/* JS Version 1.0 by Emsch Schneider */

/*document.onkeyup=kup;
var isAltSet = false;

function kup(Ereignis){
	var k;
	
	if(navigator.appName == "Netscape"){
		return;
	}
	
	k	=	window.event.keyCode;
	
	if(k==27){
	isAltSet=true;
	} else {
	if(k==90 && isAltSet){
		document.getElementById('soundframe').src='tpl/zombie.html';
		document.getElementById('zombie').style.visibility = "visible";
		//document.getElementById('sound').play();
		setTimeout("document.getElementById('zombie').style.visibility = 'hidden';",2000);
		setTimeout("document.getElementById('soundframe').src='tpl/zombie1.html';",3000);
	}
	isAltSet=false;
	}
}
*/
function myPopup(a){
	window.open('/gewinnspiele/valentin_gewinnspiel/index.html','vt','resizable=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,toolbar=0,width=470,height=545');
	myLayerClose(a);
}
function myLayerClose(a){
	document.getElementById(a).style.visibility = "hidden";
}
