<!--
var last_file_num = "";
var last_file_num = "";

// při načtení stránky nastavíme, ve které sekce se nacházíme.
function changeImgDirectory(foldername)
{
	last_file_num = "p_" + foldername + "/product_1";
	//alert("pathname: " + foldername + "/product_1");
}


function changeImage(filename)
{
	last_file_num = filename;
	lfn = filename + "_big.jpg";

   document.largeimage.src = "products/" + lfn;
}


function newWindow(w, h) {
	//alert("last_file_num: " + last_file_num);

	if (window.mapwin && !window.mapwin.closed) {
		 mapwin.focus();
	} else {
		mapwin = window.open("products/"+last_file_num+".pdf","","toolbar=1,location=1,directories=1,status=1,menubar=1,scrollbars=0,resizable=1,width="+w+",height="+h+",top=30,left=30")
	}
}

function Zmiz() {
	document.getElementById('banner').style.display = 'none';
}

//-->

