//GAMES POP-UP SCRIPT
  function games(URL){
  	varWidth = 435; 
	varHeight = 330;
	varLeft = (screen.width/2) - (varWidth/2);
	varTop = (screen.height/2) - (varHeight/2);
	if (window.showModalDialog) {
		varWidth += 20;
		varHeight += 10;
		myWindow = window.open(URL, "games", "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,copyhistory=no,left="+varLeft+",top="+varTop+",width="+varWidth+",height="+varHeight+""); 
	} else {
		myWindow = window.open(URL, "games", "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,copyhistory=no,left="+varLeft+",top="+varTop+",width="+varWidth+",height="+varHeight+""); 
	}
	myWindow.focus();
  }