﻿function OpenAddressWindow(element) {
        //var str = "$(#'" +  element + "')";
        //var tb = eval(str);
        var field = document.getElementById(element);
        var mobile = field.value;
        window.open('AddressPopup.aspx?Mobile=' + mobile, 'AddressBook', 'menubar=0,toolbar=0,statusbar=0,resizable=1,scrollbars=yes,width=350,height=350');
}

function OpenRateCalcWindow(credits) {
        window.open('RateCalcPopup.aspx?Credits=' + credits, 'AddressBook', 'menubar=0,toolbar=0,statusbar=0,resizable=1,scrollbars=yes,width=350,height=500');
}

function HelpPopUp(pageName){
    window.open("HelpPages/" + pageName + ".aspx", "MessagesHelp", "menubar=no,width=430,height=360,resizeable=yes,scrollbars=yes,toolbar=0");
                        
    return false;
}

function AutoCloseAddressWindow(){
alert("this is some alert to say youre looged oof");
var howLong = 5000;
t = null;
t = setTimeout("self.close()",howLong);

}


function OnlyCheckOneCheckBoxInList(checkboxList)
{
    for(i = 0; i < checkboxList.value.items.count; i++)
    {
        //if
    }
}

