/*----------------------------------
CONSTANTE
-----------------------------------*/
//var urlRedirect = 'http://fragmentek.no-ip.biz/floirat_reserve/site000000/';
var urlRedirect = '../';
var prefSupport = 'mobile';
/*----------------------------------
MAIN
-----------------------------------*/
//Event.observe(window, 'load', init);
init();

/*----------------------------------
FONCTIONS
-----------------------------------*/
//chargement des actions de départ
function init() {
	if(prefSupport != getSupport()) redirectTo(urlRedirect);
}


//dispatch selon type de support
function getSupport() {
	
	var support 	 = 'site';
	var screenWidth  = screen.width;
	var scrrenHeight = screen.height;
	
	if(screenWidth < 800) {
		 support = 'mobile';
	}
	
	return support;
}

function redirectTo(url) {
	window.open(url, '_parent');
}


