var Client = "Astusite";
var Regions = "wb,eb";
var WinParam = "left=10,width=800,height=600,top=10,toolbar=yes,location=yes,status=yes,scrollbars=yes,resizable=yes";
var url = "http://fr.gograph.com/?AffiliateID=346";

function FindCookies() {
	document.cookie = "Test10=Pass;";
	if(document.cookie){
		var gotCookie = false;
	  	var first = 0;
	  	var last = 0;
	  	var cookieString = document.cookie;
	  	var i = 0;
	  	var name = "affiliateAstusite";
	  	while (i <= cookieString.length) {
	  		first = i;
	    		last = first + name.length;
	    		if (cookieString.substring(first, last) == name) {
	      			gotCookie = true;
	      			break;
	    		}
	 		i++;
	  	}
	  	if (gotCookie != true) {
			createcookie();
			window.open(url,'Astusite',WinParam);window.focus();
	  	}
	}
}

function createcookie() {
	var ex = new Date();
	ex.setTime(ex.getTime() + (24 * 60 * 60 * 1000));
	ex = ex.toGMTString();
	document.cookie = "affiliateAstusite=True;expires="+ex+";";
}

FindCookies();

