﻿function OnFuncName() {
    var mytbxName = document.getElementById("ctl00_ctlQuote_tbxName");
    if (mytbxName.value == "Enter your name") {
        mytbxName.value = "";
        mytbxName.style.color = "black";
    }
    else if (mytbxName.value == "") {
        mytbxName.value = "Enter your name";
        mytbxName.style.color = "black";
    }
}
function OnFuncCellPhone() {
    var mytbxCellPhone = document.getElementById("ctl00_ctlQuote_tbxCellPhone");
    if (mytbxCellPhone.value == "Enter your cell phone") {
        mytbxCellPhone.value = "";
        mytbxCellPhone.style.color = "black";
    }
    else if (mytbxCellPhone.value == "") {
        mytbxCellPhone.value = "Enter your cell phone";
        mytbxCellPhone.style.color = "black";
    }
}
function OnFuncEmailAddress() {
    var mytbxEmailAddress = document.getElementById("ctl00_ctlQuote_tbxEmailAddress");
    if (mytbxEmailAddress.value == "Enter your email address") {
        mytbxEmailAddress.value = "";
        mytbxEmailAddress.style.color = "black";
    }
    else if(mytbxEmailAddress.value == "") {
        mytbxEmailAddress.value = "Enter your email address";
        mytbxEmailAddress.style.color = "black";
    }
}
function OnFuncInsuranceCo() {
    var mytbxInsuranceCO = document.getElementById("ctl00_ctlQuote_tbxInsuranceCo");
    if (mytbxInsuranceCO.value == "Enter your Insurance Co") {
        mytbxInsuranceCO.value = "";
        mytbxInsuranceCO.style.color = "black";
    }
    else if (mytbxInsuranceCO.value == "") {
        mytbxInsuranceCO.value = "Enter your Insurance Co";
        mytbxInsuranceCO.style.color = "black";
    }
}
function OnFuncRemarks() {
    var mytbxRemarks = document.getElementById("ctl00_ctlQuote_tbxRemarks");
    if (mytbxRemarks.value == "Enter your remarks") {
        mytbxRemarks.value = "";
        mytbxRemarks.style.color = "black";
    }
    else if (mytbxRemarks.value == "") {
        mytbxRemarks.value = "Enter your remarks";
        mytbxRemarks.style.color = "black";
    }
}
function ExeSubmit() {
    if (document.all) {
        if (event.keyCode == 13) {
            var mybtnSubmit = document.getElementById("ctl00_ctlQuote_btnSubmit");
            event.returnValue = false;
            event.cancel = true;
            mybtnSubmit.click();
        }
    }
}

