function PopupImage( imgloc, imgtitle) {
msg=window.open('','alma','toolbar=no,location=no,directories=no,status=no,menubar=no, resizable=yes, scrollbars=auto,width=200,height=100');
msg.document.write("<html><title>"+imgtitle+"</title>");
msg.document.write('<body>');
msg.document.write('<IMG name=kep id=kep src="'+imgloc+'" style="border: solid 1px black" border=0 OnClick=self.close() onLoad="resizeTo(document.images[0].width+40,document.images[0].height+60)">');
msg.document.write('</body><p>');

}

function DisplayImage( imgloc, imgname, imgtitle,x ,y) {
msg=window.open("",imgname,"height="+y+",width="+x+",left=30,top=30, toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=auto,resizable=yes");
msg.document.write("<html><title>"+imgtitle+"</title>");
msg.document.write("<body bgcolor='white' leftmargin=0 topmargin=0 marginheight=0 marginwidth=0>");
msg.document.write('<img src="' + imgloc +'">');
msg.document.write("</body></html><p>");
}


