<!-- 
function DynaWin(url, t, w, h) 
	{
	poph = + h + 75
	popw = + w + 38
	disp = window.open("","pop","height=" + poph + ",width=" + popw + ",left=15, top=35, resizable=yes, scrollbars=yes");	
	content = '<html>';
	content += '<Title>' + t + '</title>';
	content += '</head>';
	content += '<body onBlur="self.close()">';
	content += '<p align="center"><form><input type="button" value="Close" onClick="self.close();"></form></p>';
	content += '<p align="center"><img src="' + url + '" height="' + h + '" width="' + w + '"></P>';
	content += '</body></html>';
	disp.document.write(content);
	disp.document.close();
	}
 -->