function PanoramaOeffnen (Adresse) {
	xsize = 690;
	ysize = 580;
	ScreenWidth = screen.width;
	ScreenHeight = screen.height;
	xpos = (ScreenWidth/2)-(xsize/2)-12;
	ypos = (ScreenHeight/2)-(ysize/2);
	
	Panorama = window.open(Adresse, "Panorama", "width=" + xsize + ",height=" + ysize + ",left=" + xpos + ",top=" + ypos + " ");
	/*alert (ScreenWidth + " " + ScreenHeight + " " + xpos + " " + ypos);
	window.moveTo(xpos,ypos);
	window.resizeTo(xsize,ysize);*/
	
	Panorama.focus();
  
}

function ReservierungOeffnen (Adresse) {
	ScreenWidth = screen.width;
	ScreenHeight = screen.height;
	xsize = 950;
	ysize = screen.height-50;
	xpos = (ScreenWidth/2)-(xsize/2)-12;
	ypos = (ScreenHeight/2)-(ysize/2);
	
	Panorama = window.open(Adresse, "Panorama", "width=" + xsize + ",height=" + ysize + ",left=" + xpos + ",top=" + ypos + " ");
	/*alert (ScreenWidth + " " + ScreenHeight + " " + xpos + " " + ypos);
	window.moveTo(xpos,ypos);
	window.resizeTo(xsize,ysize);*/
	
	Panorama.focus();
  
}