// JavaScript EDEN GAMES
var winSite;

function CloseSite(){
	winSite = '';
}

function openSite(myURL){
	maxWidth = screen.availWidth;
	maxHeight = screen.availHeight;
	window.location.href=myURL;
	/*
	if (typeof(winSite)=='object'){

		winSite.focus();
		CloseSite();
	}else{
		if (maxWidth<=1000){
			winSite= window.open(myURL, "edenGames", "top=20, left=0, width="+(maxWidth-10)+", height="+(maxHeight-100)+", scrollbars=no, resizable=yes, status=no, directories=no, toolbar=yes, location=yes");	
		}else{
			winSite= window.open(myURL, "edenGames", "top="+(maxHeight/2-400)+", left="+(maxWidth/2-507)+", width=1015, height=720, scrollbars=no, resizable=yes, status=no, directories=no, toolbar=yes, location=yes");
		}
		winSite.focus();
		CloseSite();
	}
	*/
	
}
