﻿//<!--
var popupWindow;


// otevre nove okno s obrazkem
function ShowPic(cesta, description, sirka, vyska) {
	//zjisti rozliseni cele obrazovky
	var clW = screen.width;
	var clH = screen.height;
	
	//var wwidth = 695;
	var wwidth = sirka + 13;
	//var wheight = 560;
	wheight = vyska + 45;
	
	var winl = (clW - wwidth) / 2;
	var wint = (clH - wheight - 40) / 2;
	
	if (popupWindow) popupWindow.close();
	
	popupWindow = window.open('', 'popupWindow', 'directories=no,location=no,menubars=no,menubar=no,resizable=yes,scrollbars=no,statusbars=no,status=no,titlebar=no,toolbar=no,fullscreen=no,width='+wwidth+',height='+wheight+',left='+winl+',top='+wint+',screenX='+winl+',screenY='+wint);
	
	popupWindow.opener = self;
	
	popupWindow.document.writeln('<html><head><meta http-equiv=\"Content-Type\" content=\"text/html; charset=windows-1250\" />');
	//popupWindow.document.writeln('<script type=\"text/javascript\" src=\"include/scripts-pop.js\"></script>');
	popupWindow.document.writeln('<script type=\"text/javascript\">document.oncontextmenu = new Function(\"return false;\");function CloseWindow() {window.close();}</script>');
	popupWindow.document.writeln('<title>'+description+'</title></head><body style=\"font-family: arial; font-size: 14px; text-align: center; margin: 0; padding: 5px; background-color: #f2f0c9;\">');
	popupWindow.document.writeln('<img src=\"' + cesta + '\" alt=\"'+description+'\" width=\"'+sirka+'\" height=\"'+vyska+'\" onclick=\"CloseWindow();\" style=\"cursor: hand;\" />');
	popupWindow.document.writeln('<div style=\"margin-top: 10px;\">Pro zavření okna klikněte na fotografii.</div>');
	popupWindow.document.writeln('</body></html>');
	
	popupWindow.window.focus();
	
	return false;
}

function FiltrCenik() {
	document.getElementById('form_cenik').submit();
}

// -->