// JavaScript Document
var form = null;

function replaceForm() {
	form = document.getElementById('form');
	
	form.innerHTML = ' <form name="contactForm" id="contactForm">* ALL FIELDS ARE REQUIRED<p><input id="txt_name" name="txt_name" value="your name" onfocus="this.value=\'\'" type="text" style="width:150px; margin-right:40px;" /><div class="clear"></div><input id="txt_email" name="txt_email" value="email address" onfocus="this.value=\'\'" type="text" style="width:220px; margin-right:40px;" /><input id="txt_phone" name="txt_phone" value="phone number" onfocus="this.value=\'\'" type="text" style="width:150px;" /></p><p><input id="txt_subject" name="txt_subject" value="subject" onfocus="this.value=\'\'" type="text" style="width:600px;" /></p><p><textarea id="txt_message" name="txt_message" onfocus="this.value=\'\'" style="width:600px; height:120px; font-family:Verdana, Arial, Helvetica, sans-serif; font-size:11px; color:#333333;">your message</textarea></p><p> <img src="images/body_btn_sendInquiry.jpg" alt="Send" onclick="checkform(\'contactForm\');" style="cursor:pointer;" /> </p></form>';
}
