function popUp(URLStr,width,height) {
	wind = window.open(URLStr, '', 'scrollbars=yes,resizable=yes,copyhistory=yes,width='+width+',height='+height+',left=100, top=100,screenX=100,screenY=100');
}

function showpic (path_to_image) { 
	window.open('/includes/image-popup.php?img_url='+path_to_image,'','width=1, height=1, left=100, top=100, screenX=100, screenY=100');
}

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

function PopUpPhoto(PathToImage,ImageWidth,ImageHeight){
if (typeof(wind) == "object"){
	if (isIE) {wind.close();}
	else {wind.close;}
}

wind = window.open("","", "left=140,top=0,width="+(ImageWidth+0)+",height="+(ImageHeight+40)+",resizable=no,scrollbars=0");
wind.document.writeln ('<html><head>');
wind.document.writeln ('<link rel="StyleSheet" href="/library/css/accordionkravtsov.css" type="text/css">');
wind.document.writeln ('</head>');
wind.document.writeln ('');
wind.document.writeln ('<body class="simple" bottommargin="0" leftmargin="0" rightmargin="0" topmargin="0" marginheight="0" marginwidth="0">');
wind.document.writeln ('<div align="center"><form>');

//ImageName = String(ImageName);

wind.document.writeln ('<img name="viewimage" src="' + PathToImage + '" width="' + ImageWidth + '" height="' + ImageHeight + '" border="0">');
wind.document.writeln ('<br>');

wind.document.writeln ('<input type="Submit" class="submit" value="закрыть" onclick="self.close();">');

wind.document.writeln ('</form> </body></div></html>');
wind.document.close;
wind.focus();
}