function loadpage() {
browver= parseInt(navigator.appVersion);
browtype = navigator.appName;
browsertype = "old";
if (browtype == "Netscape" && !(browver < 3)) {
browsertype = "new"; 
}
if (browtype == "Microsoft Internet Explorer" && !(browver < 4)) {
browsertype = "new";
}
if (browsertype == "new") {
thetimer = setTimeout("changebanner()", 9000);
banneradcode = 0;
listofimages = new Array(2);
listofurls = new Array(2);
listofimages[0] = "images/almum-edu.gif"
listofimages[1] = "images/almum-sav.gif"
listofurls[0] = "rtb_accDep_alMumayazChlSavings.jsp?pageIndex=1"
listofurls[1] = "rtb_accDep_alMumayazSavings.jsp?pageIndex=1"
}
}

function changebanner(){
if (browsertype == "new") {
banneradcode++
if (banneradcode == "2") {
banneradcode = 0
}
document['adspace'].src = listofimages[banneradcode]
thetimer = setTimeout("changebanner()", 9000);
}
else if (browsertype == "old") {
}
}

function changepage() {
if (browsertype == "new") {
self.location = listofurls[banneradcode]
}
else if (browsertype == "old") {
location = "index.html"
}
}
