function enter_page(target){
	popup('banner.html', 'SHADOW', 550, 340);
	location.href = target.href;
}

function map(){
	popup("/KARTE.html","map",375,354);	
}

function popup(theURL,winName,W,H) { 
	//var left=Math.round((screen.width-W)/2)+"px";
	//var top=Math.round((screen.height-H)/2)+"px";
	var left="0px";
	var top="0px";
	window.open(theURL,winName,"width="+W+", height="+H+", top="+top+", left="+left);
}
