
	function openParent(uri) {
		opener.location=uri;
		self.close();
	}
	function openGame(path,w,h) {
		var theURL = "/games/play/"+path+"/"+w+"/"+h;
		var winName = "kewlgame";
		var features = "menubar=0,resizable=0,scrollbars=0,width="+w+",height="+h;
	  	window.open(theURL,winName,features);
	}