// JavaScript Document
<!--
function loadpage() {
bannerNum = 2;
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(bannerNum);
listofimages[0] = new Image(800,100)
listofimages[0].src = "banners/tfh.jpg"
listofimages[1] = new Image(800,100)
listofimages[1].src = "banners/raqs2010.jpg"
}
}

function changeimage(){
if (browsertype == "new") {
banneradcode = banneradcode + 1
if (banneradcode == bannerNum) {
banneradcode = 0
}
imagesource = listofimages[banneradcode].src;
window.document.bannerad.src = imagesource
thetimer = setTimeout("changeimage()", 5000);
}
else if (browsertype == "old") {
}
}

function changepage() {
if (browsertype == "new") {
if (banneradcode == 0) {
newlocation = "http://www.togetherinlife.org/fr/activites/tfh09.htm"
}
else if (banneradcode == 1) {
newlocation = "http://www.raqscongress.com/"
}
	popupWin = window.open(newlocation,'bannerad');
}
else if (browsertype == "old") {
	//popupWin = window.open(newlocation,'bannerad');
}
}
// -->