<!-- // Hide from old browsers
// Functions added by BTTB
function remoteStartBible(thisPassage) {
    remote = window.open("http://www.biblegateway.com/passage/?version=NIV&search=" + thisPassage, 'mallHelp', 'width=500,height=600,resizable=1,scrollbars=yes');
}
function remoteStart(thispage) {
    remote = window.open(thispage, 'mallHelp', 'width=550,height=425,resizable=1,scrollbars=yes');
}

function remoteStartCustom(thispage,h,w) {
    remote = window.open(thispage, 'mallHelp', 'width=' + w + ',height=' + h + ',resizable=1,scrollbars=yes,locationbar=1,menubar=1,statsbar=1,toolbar=1');
}

function elistChecker(listname) {
    if (listname.email.value.indexOf("@") == -1 ||
        listname.email.value == "") {
            
        alert("Please include a proper E-mail address.");
        listname.email.focus();
        return false;
    }
 }
 

// stop hiding -->