// JavaScript Document
function resetimage(src)
{
   this.src=src;
   this.write=resetimage_write;
}

function resetimage_write()
{
   document.write('<A ');
   document.write(' HREF="javascript:');
   document.write(
      'document.forms[' + 
      (document.forms.length - 1) + '].reset();void(0);">');
   document.write('<IMG SRC="' + this.src + '"');
   document.write(' BORDER=0');
   if (this.name)
      document.write(' NAME="' + this.name + '"');
   if (this.height)
      document.write(' HEIGHT=' + this.height);
   if (this.width)
      document.write(' WIDTH=' + this.width);
   if (this.otheratts)
      document.write(' '+ this.otheratts);
   document.write('></A>');
}

