
if(navigator.userAgent.indexOf('MSIE',0) != -1){var isIE = true;}
else {var isIE = false;}

function Preview(photo_name,photo_width,photo_height){
	if (typeof(wind) == "object"){
		if (isIE) {wind.close();}
		else {wind.close;}
	}

	wind = window.open('','', 'left=140,top=0,width=' + photo_width + ',height=' + (photo_height + 50) + ',resizable=no,scrollbars=0');
	wind.document.writeln ('<html>');
	wind.document.writeln ('<head>');
	wind.document.writeln ('<link rel="StyleSheet" href="/library/css/snow-man.css" type="text/css">');
	wind.document.writeln ('</head>');
	wind.document.writeln ('<body bgcolor="#ffffef" leftmargin="0" rightmargin="0" topmargin="0" bottommargin="0" marginheight="0" marginwidth="0">');
	wind.document.writeln ('<div align="center">');
	wind.document.writeln ('<form>');
//	wind.document.writeln ('<img src="/images/' + photo_name + '" width="' + photo_width + '" height="' + photo_height + '" border="0" align="top">');
	wind.document.writeln ('<img src="' + photo_name + '" width="' + photo_width + '" height="' + photo_height + '" border="0" align="top">');
	wind.document.writeln ('<br><input type="Submit" value="закрыть" onclick="self.close();">');
	wind.document.writeln ('</form>');
	wind.document.writeln ('</div>');
	wind.document.writeln ('</body>');
	wind.document.writeln ('</html>');
	wind.document.close;
	wind.focus();
}
