function OpenDownloadWindow()
{
    var w;
    var d;

    w = window.open("", 'ImageWindow', 'scrollbars,resizable,height=200,width=300,top=0' );

    w.document.open();

    w.document.write('<HTML><HEAD><TITLE>Image</TITLE>');
    w.document.write('<LINK REL="stylesheet" TYPE="text/css" HREF="./base.css">');
    w.document.write('<meta HTTP-EQUIV="Refresh" CONTENT="3;URL=./chickenhawk.mp3">');
    w.document.write('</HEAD>');
    w.document.write('<BODY BACKGROUND="./images/DiamondW/blueGreen.gif">');
    w.document.write('');
    w.document.write('<H1>Download...</H1>');

    w.document.write('<P>');
    w.document.write('If your download does not start automatically, ');
    w.document.write('<a href="./chickenhawk.mp3">click here.</a>');

    w.document.write('<DIV ALIGN=CENTER>');
    w.document.write('<FORM METHOD=POST>');
    w.document.write('<INPUT TYPE="button" VALUE="Close" onClick="self.close()">');
    w.document.write('</FORM>');
    w.document.write('</DIV>');

    w.document.write('</BODY></HTML>');

    // close the window
    w.document.close();

}

  function kill()
  {
          parent.window.close();
  }
  window.onload = window.focus;
  window.onerror = stopError;
  function stopError()
  {
          return true;
  }

