function OpenImg(src,width,height) {
	image = window.open('','','left=50, top=50, toolbar=no, width='+width+', height='+height+', resizable=no, scrollbars=no, status=no');
	image.focus();
	image.document.write('<html><head><title>Fotogalerie</title></head><body topmargin="0" leftmargin="0" marginwidth="0" marginheight="0"><a href="javascript: window.close();" title="Zavřít okno"><img src="'+src+'" width="'+width+'" height="'+height+'" border="0"></a></body></html>');
	image.document.close();
}

// ================================================== POP-UP WINDOW ZAČÁTEK ==================================================
function PopUp() {
	cookref = document.cookie;
	if(cookref == "" ) {
		cookref = 1;
		document.cookie = 'visited';
		setup='toolbar=no,location=no,directories=no,status=no,menubar=no,width=855,height=1200,top=20,left=20'
		setup += 'scrollbars=no,resizable=no'
		pop = window.open ("","pop",setup)
		pop.document.write('<html>');
		pop.document.write('<head>');
		pop.document.write('<Title>Slavnosti zámku v Potštejně</Title>');
		pop.document.write('</head>');
		pop.document.write('<body bgcolor=\"#FFFFFF\"leftmargin=\"0\" topmargin=\"0\">');
		pop.document.write('<img src=\"images/content/program/slavnosti_zamku_2010.jpg\"');
		pop.document.write('</body>');
		pop.document.write('</html>');
	}
}
// ================================================== POP-UP WINDOW KONEC ==================================================
