//FONCTION PERMETTANT DE RETABLIR LE FRAMESET
function checkframe(arg)
{
	if(parent.frames.length == 0)
		top.window.document.location.href=arg;
}

//FONCTION PERMETTANT DE PASSER UNE URL DIFFERENTE A LA FRAME TOP, MENU ET MAIN
function threeurl(arg0,arg1,arg2)
{
	top.window.document.frames[0].location.href=arg0;
	top.window.document.frames[1].location.href=arg1;
	top.window.document.frames[2].location.href=arg2;
}
