// JavaScript Document
var nuWin=null;
function PopUp(imgfile) {
	var p = (arguments.length>1)?arguments[1]:0;
	switch(p) {
		case 0: var w=500; var h=375; break;
		case 1: var w=375; var h=500; break;
		case 2: var w=700; var h=478; break;
		case 3: var w=640; var h=480; break;
		case 4: var w=480; var h=640; break;
	}
	var l = Math.floor((screen.width/2)-((w)/2));
	var t = Math.floor((screen.height/2)-((h)/2));
	if (nuWin!=null) nuWin.close();
	nuWin=window.open("","ParkHotelPopup","scrollbars=no,width="+w+",height="+h+",top=" + t + ",left=" + l);
	nuWin.document.writeln("<html><head><title>Park Hotel Meublè</title><meta http-equiv=\"Content-Type\" content=\"text/html; charset=iso-8859-1\"></head>");
	nuWin.document.writeln("<body marginheight=\"0\" marginwidth=\"0\" leftmargin=\"0\" topmargin=\"0\">");
	//img
	nuWin.document.writeln("<img src=\"\img\\"+imgfile+"\" width=\""+w+"\" height=\""+h+"\">");
	nuWin.document.writeln("</body></html>");
	nuWin.focus();
}
function PopUpMap() {
	var w = 300;
	var h = 230;
	var l = Math.floor((screen.width/2)-((w)/2));
	var t = Math.floor((screen.height/2)-((h)/2));
	if (nuWin!=null) nuWin.close();
	nuWin=window.open("mappa.php","ParkhotelPopup","scrollbars=no,width="+w+",height="+h+",top=" + t + ",left=" + l);
	nuWin.focus();
}
