var win2 = null;

function WinOpen2(img,w,h,mes) {
	if(win2 == null){
		win2 = window.open("","newWin","toolbar=no,location=no,scrollbars=no,width=420,height=420,left=0,top=0,resizable=no");
	}else{
		if(win2.closed){
			win2 = window.open("","newWin","toolbar=no,location=no,scrollbars=no,width=420,height=420,left=0,top=0,resizable=no");
		}
	}
	win2.document.close();
	win2.document.write('<html><head><title>Large Photo</title></head><body>');
	win2.document.write('<div align="center"><img src =' + img + ' width="' + w + '" height="' + h + '" name="LPhoto"></div>');
	win2.document.write('<hr>');
	win2.document.write('<div align="center" style="font-family:sans-serif; font-size:medium;">' + mes + '</div>');
	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();
}

function In(n) {
	if (document.images){
	document.images["btn"+n].src= "image/btn"+n+"r.gif";
	}
}

function Out(n) {
	if (document.images){
	document.images["btn"+n].src= "image/btn"+n+".gif";
	}
}
