var	wv=0;
function picWin(pic,w,h,tit)
{
	if(wv&&wv!=w)
		nw.close();
	wv=w;
	nw=window.open('','zw','dependent=yes,screenx=0,screeny=0,height='+(h+40)+',width='+(w+20));
	nw.document.write('<html><head><title>'+tit+'</title></head>'+
		'<body bgcolor="black" text="lightblue" style="font-size:9pt;">'+
		'<div align=center onClick="window.close()"><img src='+pic+'><br>'+tit+'</div>'+
		'</body></html>');
	nw.document.close();
	nw.focus();
//	nw.setTimeout('window.close()',45000);
}

