function gwpmailform(){
document.write('<input name=\"business\" type=\"hidden\" value=\"info@guitarworkshopplus.com\" />');
}

function writeFirstName() {
document.write('<input size="20" maxlength="16" name="fname" tabindex="1" />');
}

function writeLastName() {
document.write('<input size="20" maxlength="24" name="lname" tabindex="2" />');
}

function writeEmail() {
document.write('<input size="35" maxlength="64" name="email" tabindex="3" />');
}

function writeAddr1() {
document.write('<input size="35" maxlength="64" name="addr1" tabindex="4" />');
}

function writeAddr2() {
document.write('<input size="20" maxlength="32" name="addr2" tabindex="5" />');
}

function writeAddr3a() {
document.write('<input size="20" maxlength="24" name="addr3" id="addr3a" value="Select Country first" tabindex="6" style="visibility:visible; display:block;" disabled="disabled" />');
}

function writeAddr3b() {
document.write('   <select name="addr3" id="addr3b" tabindex="6" style="width:200px; visibility:hidden; display:none;" onchange="provSelect();">');
document.write('    <option id="noprovince" value="0" style="visibility:visible; display:block;" selected="selected">Please Select Province</option>');
}

function writeZip() {
document.write('<input size="20" maxlength="12" name="zip" tabindex="8" />');
}

function writePhone1() {
document.write('<input size="20" maxlength="16" name="phone" tabindex="9" />');
}

function writePhone2() {
document.write('<input size="20" maxlength="16" name="phone2" tabindex="10" />');
}

function writeHear() {
document.write('<input size="20" maxlength="128" name="hear" tabindex="11" />');
}

function writeComments() {
document.write('<textarea tabindex="14" name="feedback" rows="6" cols="70"></textarea>');
}

function writeAntiSpam() {
document.write('<input type="checkbox"  name="joinup" value="1" />');
}

function mailSubmit() {
document.write('<input  type="submit" value="Submit Form" tabindex="12" style="font:bold 13px sans-serif; color:#000000; background-color:#bdd2ef; width:120px;" onmouseover="cursorhand(this)" />');
}


