try{
	window.onload = function(){
		init();
	}
}catch(e){}

function init(){
	var strTaal = "", strLand = "";
	
	try{
		var arrTemp = window.location.toString().split("/");
				
		if (arrTemp.length > 2){
			strLand = arrTemp[arrTemp.length - 3].toLowerCase();
			strTaal = arrTemp[arrTemp.length - 2].toLowerCase();
		}		
	}catch(e){}		

	if (strTaal != "" && strLand != ""){
		try{			
			createCookie("taal", strLand + "/" + strTaal, 150); 
		}catch(e){}
	}	
}