<!--

function foto(URL,KtoraFotka) {

	document.images[KtoraFotka].src = URL;

}

function zoom(imageName,imageWidth,imageHeight) {

	newWindow = window.open("","newWindow","width="+imageWidth+",height="+imageHeight+",left=100,top=40");

	newWindow.document.open();

	newWindow.document.write('<html><title>foto</title><body bgcolor="#63639C" leftmargin="0" topmargin="0" marginheight="0" marginwidth="0" onBlur="javascript:self.close()">'); 

	newWindow.document.write('<img src='+imageName+'>'); 

	newWindow.document.write('</body></html>');

	newWindow.document.close();

	newWindow.focus();

}

function flash(imageName,imageWidth,imageHeight) {

	newWindow = window.open("","newWindow","width="+imageWidth+",height="+imageHeight+",left=100,top=40");

	newWindow.document.open();

	newWindow.document.write('<html><title>swf</title><body bgcolor="#63639C" leftmargin="0" topmargin="0" marginheight="0" marginwidth="0" onBlur="javascript:self.close()">'); 

	newWindow.document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0" width='+imageWidth+' height='+imageHeight+'>')

	newWindow.document.write('<param name=movie value='+imageName+'>')

	newWindow.document.write('<param name=quality value=high>')

	newWindow.document.write('<embed src='+imageName+' quality=high pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width='+imageWidth+' height='+imageHeight+'></embed>')

	newWindow.document.write('</object>'); 

	newWindow.document.write('</body></html>');

	newWindow.document.close();

	newWindow.focus();

}

function pano(imageName,imageWidth,imageHeight) {

	newWindow = window.open("","newWindow","width="+imageWidth+",height="+imageHeight+",left=100,top=40");

	newWindow.document.open();

	newWindow.document.write('<html><title>panorama</title><body bgcolor="#63639C" leftmargin="0" topmargin="0" marginheight="0" marginwidth="0" onBlur="javascript:self.close()">'); 

	newWindow.document.write('<embed src='+imageName+'  width='+imageWidth+' height='+imageHeight+' autoplay="true" loop="true" controller="true" playeveryframe="false" cache="false" bgcolor="#FFFFFF" kioskmode="false" targetcache="false" pluginspage="http://www.apple.com/quicktime/"></embed> ') 

	newWindow.document.write('</body></html>');

	newWindow.document.close();

	newWindow.focus();

}

//-->

