var win2 = null;

function WinOpen2(img) {
	if(win2 == null){
		win2 = window.open("","newWin","toolbar=no,location=no,scrollbars=no,width=420,height=400,left=0,top=0,resizable=no");
	}else{
		if(win2.closed){
			win2 = window.open("","newWin","toolbar=no,location=no,scrollbars=no,width=420,height=400,left=0,top=0,resizable=no");
		}
	}
	win2.document.close();
	win2.document.write('<html><head><title>Large Photo</title></head><body>');
	win2.document.write('<img src =' + img + ' width="400" height="300" name="LPhoto">');
	win2.document.write('<hr>');
	win2.document.write('<form name ="fm1"><div align="center">');
	win2.document.write('<input type="button" name="closeBtn" value="close" style="font-family:sans-serif" onClick="self.close();">');
	win2.document.write('</div></form>');
	win2.document.write('</body></html>');
	win2.focus();
}
