
//**************************
// Checks if we are using a mobile device, 
// and asks if we want to display the mobile version of the site (if not asked yet)


if (readCookie('mobileSiteSuggested') == null) {
	createCookie('mobileSiteSuggested',true,1);
	if (DetectSmartphone() || DetectMobileQuick() || DetectMobileLonger() ) {
		if (confirm(mobileSuggestionText)) {
			document.location.href="http://m.fim-live.com"; 
		}
	}
}
