var Cwidth = 550;
var Cheight = 400;

var Cleft = (window.screen.width-Cwidth)/2;
var Ctop = (window.screen.height - Cheight)/2;

var popunderurl="/freeonlinegames.php";
var winfeatures="scrollbars=0,resizable=0,toolbar=0,location=1,menubar=0,status=0,directories=0,top=" + Ctop + ",left=" + Cleft + ",width=" + Cwidth + ",height=" + Cheight;
var thecookiename="thisarcade";

function get_cookie(Name) {
	var NewName = Name + "=";
	var Cookies = document.cookie.split(';');
	for(var i=0;i < Cookies.length;i++) {
		var TheCookie = Cookies[i];
		while (TheCookie.charAt(0)==' ') TheCookie = TheCookie.substring(1,TheCookie.length);
		if (TheCookie.indexOf(NewName) == 0) return TheCookie.substring(NewName.length,TheCookie.length);
	}
	return false;
}

function loadornot(){
	if (!get_cookie(thecookiename)){
		loadpopunder();
		var d = new Date();
		d.setDate(d.getDate()+1);
		d.toGMTString();
		document.cookie=thecookiename+"=yes; expires=" + d + "; path=/";
	}
} 

function loadpopunder(){
	win2=window.open(popunderurl,"",winfeatures);
	win2.blur();
	window.focus();
}
