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)+",resizable=no,scrollbars=0");
        wind.document.writeln ('<html><head>');
        wind.document.writeln ('</head>');
        wind.document.writeln ('');
        wind.document.writeln ('<body bottommargin="0" leftmargin="0" rightmargin="0" topmargin="0" marginheight="0" marginwidth="0" bgcolor="#2175BC">');
        wind.document.writeln ('<div align="center"><a href="javascript:window.close();">');

        wind.document.writeln ('<img name="viewimage" src="' + PathToImage + '" width="' + ImageWidth + '" height="' + ImageHeight + '" border="0" align="top">');
        wind.document.writeln ('</a>');
        wind.document.writeln ('</body></div></html>');
        wind.document.close;
        wind.focus();
}