<!--
function winPopUp(source, theTitle) {
var win0 = window.open("", 'theTitle', "left=100,top=150,toolbar=no,dependent=yes,directories=no,menubar=no,scrollbars=no,resizable=no,depen dent,width=640,height=640");
var d = win0.document;
d.write("<html><head><title>" + theTitle + "</title></head>");
d.write("<body onclick=self.close();onblur=self.close();>");
d.write('<img src="' + source + '" onload="window.resizeTo(this.width+25, this.height+40);">');
d.write("</body></html>");
d.close(); 
win0.focus();
}

//-->
