/**
 * zamena reklamnich banneru na verejnesportovnicentrum.cz
 *
 */

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("changeimage()", 3000);
banneradcode = 0;
listofimages = new Array(3);
listofimages[0] = new Image(720, 150)
listofimages[0].src = "19122008-0.gif"
listofimages[1] = new Image(720, 150)
listofimages[1].src = "19122008-0.gif"
listofimages[2] = new Image(720, 150)
listofimages[2].src = "19122008-0.gif"
}
}

function changeimage(){
if (browsertype == "new") {
banneradcode = banneradcode + 1
if (banneradcode == "3") {
banneradcode = 0
}
imagesource = "19122008-" + banneradcode + ".gif"
window.document.bannerad.src = imagesource
thetimer = setTimeout("changeimage()", 6000);
}
else if (browsertype == "old") {
}
}

function changepage() {
if (browsertype == "new") {
if (banneradcode == 0) {
newlocation = "http://www.powergoalgame.cz/Sportchannelindex.aspx"
}
else if (banneradcode == 1) {
newlocation = "http://www.beskydskysindel.cz/"
}
else if (banneradcode == 2) {
newlocation = "http://www.powergoalgame.cz/Sportchannelindex.aspx"
}
location = newlocation
}
else if (browsertype == "old") {
location = "http://www.powergoalgame.cz/Sportchannelindex.aspx"
}
}

