// JavaScript Document
window.onload=initLinks;


function initLinks(){


document.getElementById("rubAccueil").onclick=processPrevious;

}

function processPrevious()
{
document.getElementById("mainFrame").src=contacts.html;

}


function processNext()
{
	
thisTab++;
alert(thisTab);
if(	thisTab==myTab.length){
thisTab=0	;
}
document.getElementById("toto").innerHTML=myTab[thisTab];

return false;
}