function changeBG(franchisee,imageNum) {


	document.getElementById('bgHomeHeader').style.backgroundImage = "url(images/" + franchisee + "homefeature" + imageNum + ".jpg)";

    if (imageNum == '4') {
        document.getElementById('wt1').style.display = "none";
        document.getElementById('wt1b').style.display = "block";
        document.getElementById('wt2').style.display = "none";
        document.getElementById('wt3').style.display = "none";
    }
    else if (imageNum == '2') {
        document.getElementById('wt1').style.display = "none";
        document.getElementById('wt1b').style.display = "none";
        document.getElementById('wt2').style.display = "block";
        document.getElementById('wt3').style.display = "none";
    }
    else if (imageNum == '3') {
        document.getElementById('wt1').style.display = "none";
        document.getElementById('wt1b').style.display = "none";
        document.getElementById('wt2').style.display = "none";
        document.getElementById('wt3').style.display = "block";
    }
}

function submit_form() {
    if (document.getElementById("search1").value != "") {
        //window.location = "SearchSchool.aspx?AllWords=True&SSearch=" + document.getElementById("search1").value;
        document.forms[0].action = "SearchSchool.aspx?AllWords=True&SSearch=" + document.getElementById("search1").value;
        document.forms[0].__VIEWSTATE.name = 'NOVIEWSTATE';
        document.forms[0].submit();
    }
}
function checkKey(e) {
    if (document.getElementById("search1").value != "") {
        var key;
        if (window.event)
            key = window.event.keyCode;     //IE
        else
            key = e.which;     //firefox

        if (key == 13) {
            //window.location = "SearchSchool.aspx?AllWords=True&SSearch=" + document.getElementById("search1").value;
            document.forms[0].action = "SearchSchool.aspx?AllWords=True&SSearch=" + document.getElementById("search1").value;
            document.forms[0].__VIEWSTATE.name = 'NOVIEWSTATE';
            document.forms[0].submit();
        }
    }
}