//<script LANGUAGE="JavaScript">
var lang=navigator.userLanguage;
var myLangCode="";
switch(lang.toString().substr(0,2)){
	case "es":
	case "eu":
	case "gl":
		myLangCode="8";
		break;
	case "it":
		myLangCode="6";
		break;
	case "ca":
		myLangCode="1";
		break;
	case "fr":
		myLangCode="4";
		break;
	default:
		myLangCode="3";
		break;
}
function checkNavigator(){
	var uA =navigator.userAgent;
	var MSIE = uA.indexOf("MSIE");
	var versionStr = "",versionIE = 0,chkIE = false;
	if (MSIE >0){
		versionStr = uA.substring(MSIE + 5);
		versionIE = parseFloat(versionStr.substr(0,versionStr.indexOf(";")));
		if (versionIE >= 5.5) chkIE = true;
	}
	return chkIE;
}

function default_onload(iNoCheck){
	if (iNoCheck==0) {
		if(checkNavigator()) {
			window.status="Ekon Ebiz";
		}else{
			window.location.href="Eb_ErrorNavegador.html";
		}
	}else{	
		window.status="Ekon Ebiz";
	}
}

function admin_onload(iNoCheck){
	if (iNoCheck==0) {
		if(checkNavigator()) {
			window.status="ekon.ebiz v2.1.1 © CCS.biz";
		}else{
			window.location.href="Eb_ErrorNavegador.html";
		}
	}else{	
		window.status="ekon.ebiz v2.1.1 © CCS.net";
		window.resizeTo(800,580);
		window.moveTo(0,0);
	}
}

function window_onload(iNoCheck,iAdm,sArea){
	if (iNoCheck==0) {
		if(checkNavigator()) {
			window.status="ekon.ebiz v2.1.1 © CCS.biz";
		}else{
			window.location.href="Eb_ErrorNavegador.asp?adm=" + iAdm.toString() + "&area=" + sArea;
		}
	}else{	
		window.status="ekon.ebiz v2.1.1 © CCS.biz";
	}
}