//alert("??"+navigator.userAgent);
sm_os_names=["iphone", "ipod", "opera mini", "blackberry", "android", "symbian", "windows ce", "IEMobile", "Smartphone"];
/*if(document.location.search.indexOf("debug=SMARTPHONE")==-1);
else{*/
	for(i=0; i<sm_os_names.length; i++){
		if(navigator.userAgent.toLowerCase().indexOf(sm_os_names[i])>-1/*||true*/){
			ask_for_smartphone_version();
			break;
		}
	}
//}
function ask_for_smartphone_version(){
	try{
		if(parent){
			if(parent.smartphone_checked)return;
			parent.smartphone_checked=true;
		}
	}catch(e){}
	var messages=[
		"Do you want to see the smartphone-version from INDOLA?", 
		"Do you want to see the smartphone-version from INDOLA?", 
		"Quieres ver INDOLA en versión smartphone? ", 
		"Voulez-vous voir la version INDOLA  optimisée pour mobiles ? ", 
		"Do you want to see the smartphone-version from INDOLA?", 
		"Szeretnéd látni az INDOLA okostelefonokra szabott oldalát? ", 
		"Do you want to see the smartphone-version from INDOLA?", 
		"Do you want to see the smartphone-version from INDOLA?"
	];
	var sub_domains=["en", "de", "es", "fr", "it", "hu", "nl", "uk"];
	var lang=0; 
	if(document.location.search.indexOf("&L=")>-1){
		lang=parseInt(document.location.search.split("&L=")[1]);
	}
	if(lang>=messages.length)lang=messages.length-1;
	else{
		for(i=0; i<sub_domains.length; i++){
			if(document.location.href.indexOf("//www.indola.com/"+sub_domains[i]+"/")>-1||document.location.href.indexOf("//indola.com/"+sub_domains[i]+"/")>-1){
				lang=i;
				break;
			}
		}
	}
	//if(window.confirm(messages[lang])){
		no_smartphone=false;
		top.location.href="http://m.ilearn.indola.com";
	//}

}
