<!DOCTYPE html><html><head><meta charset="utf-8"><script type="text/javascript">function showContactForm(){document.getElementById{"contactForm").style.display="block";}</script><style> #contactForm {display:none;}</style></head><body><p id="call"><a href="#" onClick="showContactForm()"> Email </a> for a brochure.</p><div id="contactForm" name="contactForm"><h3>Contact Us</h3><form id="contact" name="contact"><table cellspacing="2px" border="0"><tbody><tr><td><input value="Full Name" name="fullName" type="text" id="fullName" class="disappear" size="40" maxlength="40" onfocus="value=''"/></td></tr><tr><td><input value="email" name="email" type="text" id="email" class="disappear" size="40" maxlength="40" onfocus="value=''"/></td></tr><tr><td><input value="phone number" name="phone" type="text" id="phone" class="disappear" size="40" maxlength="40" onfocus="value=''"/></td></tr><tr><td><textarea value="Question or Comment" name="comment" class="disappear" cols="40" rows="5" onfocus="value=''"></textarea></td></tr> <td><input type="submit" value="Submit" class="formbutton"/></td></tr></tbody> </table></form></div><!-- end contact form div --></body></html>
// Won't workdocument.getElementById{"contactForm")// Will workdocument.getElementById("contactForm")
Here's the stripped down code