function jumpTo(URL_List){
   var URL = URL_List.options[URL_List.selectedIndex].value;
   URL = "/poc/onlinebanking?command=loginScreen&cuNumber=" + URL;
   window.location.href = URL;
}


// page opener for mastercard link
function Start(page) {
OpenWin = this.open(page, "CtrlWindow", "toolbar=yes,menubar=yes,location=yes,scrollbars=yes,resizable=yes");
}
// select all functionality for checkboxes

var imageTemp = "/CreditUnions/generic/images/select.gif";
var checkflag = "false";
function check(field) {
if (checkflag == "false") {
for (i = 0; i < field.length; i++) {
field[i].checked = true;}
checkflag = "true";
 }
else {
for (i = 0; i < field.length; i++) {
field[i].checked = false; }
checkflag = "false";
 }
}

// cheque imagine popup window

function NewWindow(mypage, myname) {
var w = "470";
var h = "550";
var scroll= "yes";
var winl = (screen.width - w) / 2;
var wint = (screen.height - h) / 2;
winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',resizable'
win = window.open(mypage, myname, winprops)
if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}





function jumpTo(URL_List){
   var URL = URL_List.options[URL_List.selectedIndex].value;
   URL = "/poc/onlinebanking?command=loginScreen&cuNumber=" + URL;
   window.location.href = URL;
}
