function showImage(w,h,url1,tit)
{
	nw=window.open("",'image','toolbar=no menu=no width=' + w + ' height=' + h)
	nw.document.write("<HTML><head><title>"+tit+"</title><style> body {margin:0}</style></head><BODY><IMG SRC='"+url1+"' alt='' ><br></body></html>");
	
	nw.document.close();
	nw.focus();
}