  /************************************************************************/
  // Variables
  Ad.prototype.href = null;
  Ad.prototype.image = null;

  // Methods
  Ad.prototype.getHtml = Ad_getHtml;
  
  //***********************************************************************/
  function Ad(href, image)
  {
    this.href = href;
    this.image = image;
    return this;
  }
  //***********************************************************************/
  function Ad_getHtml()
  {
    var html = '<A HREF="' + this.href + '" TARGET="_top">' +
               '<IMG SRC="' + this.image + '" BORDER="1" WIDTH="468" HEIGHT="60">' +
						   '</A><BR><FONT SIZE="1">ADVERTISEMENT</FONT><BR>';
    return html;
  }
  
//***********************************************************************/
//***********************************************************************/
