<!--
/************************************************************************/
/* DUNE by NPDS                                                         */
/* ===========================                                          */
/*                                                                      */
/* Based on PhpNuke 4.x source code                                     */
/* Base on pda Addon by Christopher Bradford (csb@wpsf.com)             */
/*                                                                      */
/* NPDS Copyright (c) 2002-2007 by Philippe Brunier                     */
/*                                                                      */
/* This program is free software. You can redistribute it and/or modify */
/* it under the terms of the GNU General Public License as published by */
/* the Free Software Foundation; either version 2 of the License.       */
/************************************************************************/

/* the url of the web site where the push modul is       */
/* + /push.php - for ex : "http://www.ffpjp75.com/push.php" */
/* var url="http://www.ffpjp75.com/push.php";               */
var url="http://www.ffpjp75.com/push.php";

/* options : value : 1=true / 0=False       */
/* ordering => News,Faq,Poll,Members,Links  */
/* var options="11111";                     */
var options="10000";

function getCookie(Name) {
   var offset;
   var end;
   var search = Name + "=";
   if (document.cookie.length > 0) {
      offset = document.cookie.indexOf(search);
      if (offset != -1) {
         offset += search.length;
         end = document.cookie.indexOf(";", offset);
         if (end == -1)
            end = document.cookie.length;
      return unescape(document.cookie.substring(offset, end));
      }
   }
}

function setCookie(name, value, expire) {
   document.cookie = name + "=" + escape(value)+((expire == null) ? "" : ("; expires=" + expire.toGMTString()));
}

function expiration (temp) {
   var today = new Date();
   var expires = new Date();
   expires.setTime(today.getTime() + temp);
   return (expires);
}

function register(name,Xvalue) {
   setCookie(name, Xvalue, expiration(5000));
   history.go(0);
}

var Xtmp=getCookie("npds-push");
if (Xtmp) {
   setCookie("npds-push", Xtmp, expiration(5));
   document.write('<script src="'+url+"?options="+options+"&"+Xtmp+'"></script>');
} else {
   document.write('<script src="'+url+"?options="+options+'"></script>');
}
//-->
