// JavaScript Document
var form = null;

function replaceForm() {
	form = document.getElementById('form');
	
	form.innerHTML = '* ALL FIELDS ARE REQUIRED <form name="contactForm" id="contactForm"><p><input id="txt_name" name="txt_name" value="your name" onfocus="this.value=\'\'" type="text" style="width:150px;" /></p><p><input id="txt_email" name="txt_email" value="email address" onfocus="this.value=\'\'" type="text" style="width:180px;" /></p><p><input id="txt_subject" name="txt_subject" value="subject" onfocus="this.value=\'\'" type="text" style="width:200px;" /></p><p><textarea id="txt_message" name="txt_message" onfocus="this.value=\'\'" style="width:300px; height:120px; font-family:Verdana, Arial, Helvetica, sans-serif; font-size:11px; color:#333333;">your message</textarea></p><p><img src="images/int_sendBTN.jpg" alt="Send" onclick="checkform(\'contactForm\');" style="position:relative; cursor:pointer; left:260px;" /></p></form>';
}
