function popup(URL,WDT,HGT) {
  day = new Date();
  id = day.getTime();
  var TOP = (screen.height-HGT)/2;
  var LEFT = (screen.width-WDT)/2;
  eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width='+WDT+',height='+HGT+',left='+LEFT+',top='+TOP);");
} 

function popup_img(IMG,WDT,HGT,IS_AAIPL) {
  var ww, wh;
  ww = WDT + 40;
  wh = HGT + 60;
  day = new Date();
  id = day.getTime();
  var TOP = (screen.height-HGT)/2;
  var LEFT = (screen.width-WDT)/2;
  var LOGO = ((IS_AAIPL != 'undefined') && (IS_AAIPL == 'aaipl')) ? 'popup_img_logo_aaipl.gif' : 'popup_img_logo.gif'; 
  wid = open('',id, 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width='+ww+',height='+wh+',left='+LEFT+',top='+TOP);
  wid.focus();
  wid.document.open();
  wid.document.write('<html><head><title>photo</title></head>');
  wid.document.write('<body style="background: #FFFFFF; color: #000000; margin: 10px;">');
  wid.document.write('<div style="text-align: center; background: #e7e8f1;">');
  wid.document.write('<table width="100%" cellpadding="0" cellspacing="0" border="0"><tr>');
  wid.document.write('<td style="background: #6f81af;" width="5"><img src="/images/null.gif" width="5" height="27" alt="" border="0" /></td>');
  wid.document.write('<td width="100%" style="background: #6f81af;"><img src="/images/'+LOGO+'" width="24" height="20" alt="IPL" border="0" style="vertical-align: middle;" /></td>');
  wid.document.write('<td width="24" style="background: #6f81af;"><a href="" onclick="window.close(); return false;"><img src="/images/popup_img_close.gif" width="14" height="14" alt="" border="0" style="vertical-align: middle; padding-right: 5px;" /></a></td>');
  wid.document.write('</tr></table>');
  wid.document.write('<img class=image src="'+IMG+'" width="'+WDT+'" height="'+HGT+'" style="margin: 5px;" border="0" alt="photo" />');
  wid.document.write('</div></body></html>');
  wid.document.close();
}

