// JavaScript для открытия фотографий в окне
function FotoOpen(sFotoName, sFotoPath){
	newWindow = window.open("/fotoopen.php?img="+sFotoName+"&path="+sFotoPath, (10000000000000000000*Math.random()), "scrollbars=no,resizable=yes");
	newWindow.focus();
	return false;
}

function __FotoOpen(sFotoName, sFotoPath){
	var tmpFotoName = sFotoName;
	sFotoName = sFotoPath + sFotoName;
	var imgFoto = new Image();
	imgFoto.src = sFotoName;
	/*while(imgFoto.width==0){
		//alert("Через несколько секунд загрузится картинка.");
	}*/
	/*if (imgFoto.width==0){
		timerID = setTimeout('FotoOpen("'+tmpFotoName+'", "'+sFotoPath+'")', 2000);
	}
	else{*/
	var sFotoWidth = imgFoto.width;
	var sFotoHeight = imgFoto.height;
	var imageType = "";
	
	newWindow = window.open("", (10000000000000000000*Math.random()), "width="+sFotoWidth+",height="+sFotoHeight+",scrollbars=no");
	newWindow.document.open();
	newWindow.document.write('\n<html><title>Золотой венец</title><body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginheight="0" marginwidth="0" onLoad="self.resizeTo('+sFotoWidth+', '+sFotoHeight+')">'); 
	if (imageType == "swf"){
		newWindow.document.write('\n<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=\"'+sFotoWidth+'\" height=\"'+sFotoHeight+'\">');
		newWindow.document.write('\n<param name=movie value=\"'+sFotoName+'\"><param name=quality value=high>');
		newWindow.document.write('\n<embed src=\"'+sFotoName+'\" quality=high pluginspage=\"http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash\" type=\"application/x-shockwave-flash\" width=\"'+sFotoWidth+'\" height=\"'+sFotoHeight+'\">');
		newWindow.document.write('\n</embed></object>');
	}
	else{
		newWindow.document.write('\n<img src=\"'+sFotoName+'\">');
	}
	newWindow.document.write('\n</body></html>');
	newWindow.document.close();
	newWindow.focus();
	//}
	return false;
}