var contactDisplay = document.getElementById('contact-form');
contactDisplay.innerHTML = '<form action=\"http://www.thelyonfirm.com/contact-joseph-lyon.php\" method=\"POST\"><input type=\"hidden\" name=\"formtest\" value=\"test\"><input class=\"inform\" name=\"realname\" value=\"Name:\" onFocus=\"if(this.value == \'Name:\') {this.value = \'\';}\" onBlur=\"if (this.value == \'\') {this.value = \'Name:\';}\"><input class=\"inform\" name=\"homephone\" value=\"Phone:\" onFocus=\"if(this.value == \'Phone:\') {this.value = \'\';}\" onBlur=\"if (this.value == \'\') {this.value = \'Phone:\';}\"><input class=\"inform\" name=\"email\" value=\"E-mail:\" onFocus=\"if(this.value == \'E-mail:\') {this.value = \'\';}\" onBlur=\"if (this.value == \'\') {this.value = \'E-mail:\';}\"><textarea class=\"teform\" name=\"comment\" rows=\"3\" cols=\"5\" onFocus=\"if(this.value == \'Comments:\') {this.value = \'\';}\" onBlur=\"if (this.value == \'\') {this.value = \'Comments:\';}\">Comments:</textarea><p align=\"right\"><input type=\"submit\" name=\"submit\" value=\"submit\" class=\"button\">&nbsp;<input type=\"reset\" value=\"reset\" class=\"button\"></p></form>';


