// Picture_Fever v4.01
function openPictureWindow_Fever(imageType,imageName,imageWidth,imageHeight,alt,posLeft,posTop) {
	newWindow = window.open("","newWindow","width="+imageWidth+",height="+imageHeight+",scrollbars=no,left="+posLeft+",top="+posTop);
	newWindow.document.open();
	newWindow.document.write('<html><title>'+alt+'</title><body bgcolor="#dfe0fe" leftmargin="0" topmargin="0" marginheight="0" marginwidth="0" onBlur="self.close()">'); 
	newWindow.document.write('<a href="javascript:;" onClick="self.close()" style="font-size:10px;"><img src=\"'+imageName+'\" width='+imageWidth+' height='+imageHeight+' alt=\"'+alt+'\"></a>');
	newWindow.document.write('</body></html>');
	newWindow.document.close();
	newWindow.focus();
}
//zobrazeni
function toggle( targetId ) {
	if ( document.getElementById) {
		target = document.getElementById( targetId );
			if (target.style.display == "none") {
					target.style.display = "";
					} else {
						target.style.display = "none";
					}
		}
	}
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}