
function neuesFenster(url){
neu=window.open(url,"fenster","width=600,height=500,toolbar=0,directories=0,menubar=0,status=1,resizable=0,location=0,scrollbars=0,copyhistory=0");
}

function PflegeFenster(url){
pflege=window.open(url,"fenster","width=800,height=500,toolbar=0,directories=0,menubar=0,status=0,resizable=0,location=0,scrollbars=0,copyhistory=0");
setTimeout('pflege.focus()', 300);
}

function AnfahrtFenster(url){
anfahrt=window.open(url,"fenster","width=800,height=500,toolbar=0,directories=0,menubar=0,status=0,resizable=0,location=0,scrollbars=0,copyhistory=0");
anfahrt.focus();
}

function PanoFAQ(url){
pano=window.open(url,"fenster","width=640,height=500,toolbar=0,directories=0,menubar=0,status=0,resizable=0,location=0,scrollbars=0,copyhistory=0");
pano.focus();
}

function go (url) {
opener.location.href=url;
window.close();
}

function popUp(URL,size) {
	day = new Date();
	id = day.getTime();
	
	if (size == "n"){
		var brte = "150";
		var hhe = "150";
	}
	
	ScreenWidth = screen.width;
	ScreenHeight = screen.height;

	xpos = (ScreenWidth/2)-(brte/2);
	ypos = (ScreenHeight/2)-((hhe)/2);
	
	eval("page" + id + " = window.open(URL, '" + id + "','toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width="+ brte +",height="+ hhe +",top="+ ypos +",left="+ xpos +"');");
}
