
if(navigator.userAgent.indexOf('MSIE',0) != -1){var isIE = true;}
else {var isIE = false;}

function Preview(name,photo_name,photo_width,photo_height){
	if (typeof(wind) == "object"){
		if (isIE) {wind.close();}
		else {wind.close;}
	}

	wind = window.open('','', 'left=0,top=0,width=' + (photo_width) + ',height=' + (photo_height+50) + ',resizable=no,scrollbars=0');
	wind.document.writeln ('<html>');
	wind.document.writeln ('<head>');
	wind.document.writeln ('<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=windows-1251">');
	wind.document.writeln ('<title>' + name + '</title>');
	wind.document.writeln ('<link rel="StyleSheet" href="../style.css" type="text/css">');
	wind.document.writeln ('</head>');
	wind.document.writeln ('<body bgcolor="#FFFFFF" style="color=#000999;" 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="' + photo_name + '" width="' + photo_width + '" height="' + photo_height + '" border="1" align="center">');
	wind.document.writeln ('<p><b><font color="#000999" face="Verdana" size="2">' + name + '</font></b></p>');

wind.document.writeln ('</table>');
wind.document.writeln ('<br>');

}