// JavaScript Document

function wop(im,hd,w,h){
   var pic='"'+hd+'"'+" HEIGHT="+'"'+h+'"'+" SRC="+'"'+im+'"'+" WIDTH="+'"'+w+'"';
   width = "" + (screen.width - w)/2;
   height = "" + (screen.height - h)/2;
   var wn="width="+w+","+"height="+h+","+"status=no,toolbar=no,menubar=no,left="+width+",top="+height;
   myWin=open("","_blank",wn);
   myWin.document.write('<HTML>');
   myWin.document.write('<HEAD><TITLE>'+hd+'</TITLE></HEAD>');
   myWin.document.write('<BODY LEFTMARGIN="0" TOPMARGIN="0" bottommargin="0" rightmargin="0">');
   myWin.document.write('<a href="javascript:window.close();" ><IMG ALIGN="center"  border="0" bordercolor="#cccccc"  ALT='+pic+'></a>')
   myWin.document.write('</BODY>');
   myWin.document.write('</HTML>');
}
