
<!--
//<--Redirection en fonction de la resolution
var wid=screen.width;
var page="";
var frame="principale";
if (wid==640)
	{
 		page="index0_800.html";
		window.self.location=page;
	}
if (wid==800)
	{
		page="index0_800.html";
		window.self.location=page;
	}
if (wid==1024) 
	{
		page="index0_800.html";
//		page="index0_1024.html";
		window.self.location=page;
	}
if (wid==1152)
	{
		page="index0_800.html";
//		page="index0_1024.html";
		window.self.location=page;
	}
if (wid>1152)
	{
		page="index0_800.html";
//		page="index0_1024.html";
		window.self.location=page;
	}	
//  --->
