function gup( name ){  
	name = name.replace(/[\[]/,"\\\[").replace(/[\]]/,"\\\]");  
	var regexS = "[\\?&]"+name+"=([^&#]*)";  
	var regex = new RegExp( regexS );  
	var results = regex.exec( window.location.href );  
	if( results == null )    
		return "";  
	else    
		return results[1];
}
	var trovato = false;
	var mobile_param = gup( 'mobile' );
	if (mobile_param == 'yes') {
		mobile_param = yes;
	}
	else {
		if (DetectAndroid() && !(trovato)) {
			window.location = "fluid_mobiles/bbnkad"
			trovato = true;
		}
		if (DetectS60OssBrowser() && !(trovato)) {
			window.location = "fluid_mobiles/bbnkad"
			trovato = true;
		}
		if (DetectBlackBerry() && !(trovato)) {
			window.location = "fluid_mobiles/bbnkad"
			trovato = true;
		}
		if (DetectIphoneOrIpod() && !(trovato)) {
			window.location = "fluid_mobiles/i"
			trovato = true;
		}
		if (DetectIpad() && !(trovato)) {
			window.location = "fluid_mobiles/ip"
			trovato = true;
		}
		if (DetectTierIphone() && !(trovato)) {
			window.location = "fluid_mobiles/x"
			trovato = true;
		}
		if (DetectMobileQuick() && !(trovato)) {
			window.location = "fluid_mobiles/x"
			trovato = true;
		}
	}

