function PopImage( file, w, h, title ){
  var s = '#<html><head><title>' + title + '</title>';
  s +='<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"></head>';
  s += '<body bgcolor="#FFFFFF" text="#000000" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">';
  s += '<table width="100%" height="100%" border="0" cellspacing="0" cellpadding="0" background="' + file + '">';
  s += '  <tr>';
  s += '    <td align="center" valign="middle">';
  s += '      <img src="../img/spacer.gif" width="' + w + '" height="' + h + '" border="0" alt="">';
  s += '    </td>';
  s += '  </tr>';
  s += '</table></body></html>';
  PopWin( s, w, h );
}





