function switchme() {
	if (document.getElementById('games').value != '') {
		window.location = "./play-" + document.getElementById('games').value + ".html";
	}
}

function bookmark(url, who) {
	var ver = navigator.appName;
	var num = parseInt(navigator.appVersion);
	if((ver == "Microsoft Internet Explorer") && (num >= 4)) {
		window.external.AddFavorite(url, who);
	} else{
		alert("You are not using Internet Explorer.\nPlease push Ctrl+D to bookmark our site.");
	} 
}

function popUp(URL, w, h){
	winpops = window.open(URL,"","width="+w+",height="+h+",left=50,top=50,status=0,scrollbars=0,resizable=1,menubar=0,location=0,toolbar=0");
}