<!-- Begin Chinese Zodiac
//  this script designed for Uncle Woody's 
//  entire contents copyright (C) 2000-03 The Blame Productions
//  http://www.olywa.net/blame
// 10-15-01 fixes Netscape display problem

function WriteHTML()
{
  var xHTML = "</td></tr></table>"
    + "</td></tr></table></td>"
    + "<td align='right'><table cellpadding='5'><tr valign='top'>"
    + "<td align='center'><font face='Arial,Helvetica' size=-1><b>Find out "
    + "what your Chinese Zodiac animal is:</b><p>"
    + "<font color='#008000'>Please enter your birth year in the"
    + "<br>long form, such as &quot;1978&quot;:"
    + "</font><form name='frm'>"
    + "<input type='text' size=4 name='inyear'>&nbsp;"
    + "<input type='button' value='Tell me what I am' "
    + "onClick='getpet()'><p><hr>"
    + "You were born in the year of the "
    + "<input type='text' size=7 name='birth'>."
    + "</form></font></td></tr></table>"
    + "</td></tr></table>"
    + "<tr><td align='center'>";
  document.write(xHTML);
}
WriteHTML();
// End -->