<!--
function wopen(arg, wd, ht, cpt){

	var Img = arg;
	var wd = wd + 30;
	var ht = ht + 100;
	var Caption = cpt;
	var Option = "scrollbars=1, resizable=yes, width = " + wd + ", height = " + ht;
	iwindow=window.open('','image', Option);
	iwindow.document.write("<html><body bgcolor=#ffffff>");
	iwindow.document.write("<style type='text/css'>");
	iwindow.document.write("<!--");
	iwindow.document.write(".s {  font-size: 10pt}");
	iwindow.document.write("-->");
	iwindow.document.write("</style>");
	iwindow.document.write("<center><img src='");
	iwindow.document.write(Img);
	iwindow.document.write("'><br>");
	iwindow.document.write(Caption);
	iwindow.document.write("<a href='javascript:window.close()'><img src='../img_cmn/close.gif' border=0></a></center>")
	iwindow.document.write("</body></html>");
}

//-->