//HawleyTronics 01-15-2009

document.write('<div align="right"><form action="newsletter.php" method="post" enctype="multipart/mixed" name="form2" id="form2"><table width="100%" border="0" cellspacing="0" cellpadding="1"><tr><td width="52%" rowspan="2" align="right" class="news"><div align="left">Newsletter Subscription</div></td><td width="36%" align="right"><input name="yourname" type="text" class="textfield" id="yourname" value="Name" onFocus="doClear(this)"/></td><td width="12%" rowspan="2" align="right" valign="bottom"><input name="button" type="submit" class="but" id="button" value="Submit" /></td></tr><tr><td align="right"><input name="youremail" type="text" class="textfield" id="youremail" value="Email" onFocus="doClear(this)"/></td></tr></table></form></div>');

function doClear(theText) {
     if (theText.value == theText.defaultValue) {
         theText.value = ""
    }
}