// JavaScript Document | redirection en fonction de la résolution
//auteur Sebastien Horemans						  				 
						  				 
var reso = 499;						  				 

if (screen.width < reso) {
	location="pda/index.html";
};
if (screen.height < reso) {
	location="pda/index.html";
};

//**************************************************************
