// JavaScript Document
var nuWin=null;
function PopUp(imgfile) {
	var p = (arguments.length>1)?arguments[1]:0;
	
	var w = (p==1)?375:500;
	var h = (p==1)?500:375;
	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("","GlavjcPopup","scrollbars=no,width="+w+",height="+h+",top=" + t + ",left=" + l);
	nuWin.document.writeln("<html><head><title>Hotel Ristorante Glavjc</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\">");
	if (p==2) {	//flash
		nuWin.document.writeln('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="500" height="375">');
		nuWin.document.writeln('  <param name="movie" value="data/pan.swf">');
		nuWin.document.writeln('  <param name="quality" value="high">');
		nuWin.document.writeln('  <param name="menu" value="false">');
		nuWin.document.writeln('  <embed src="data/pan.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="500" height="375"></embed>');
		nuWin.document.writeln('</object>');
	} else {	//img
		nuWin.document.writeln("<img src=\"\img\\"+imgfile+"\" width=\""+w+"\" height=\""+h+"\">");
	}
	nuWin.document.writeln("</body></html>");
	nuWin.focus();
}
function PopUpMap() {
	var w = 750;
	var h = 510;
	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","GlavjcPopup","scrollbars=no,width="+w+",height="+h+",top=" + t + ",left=" + l);
	nuWin.focus();
}

