var NN, isDOM;
isDOM = document.getElementById?1:0;
// ----------------------
function detectaNavegador(){
if (isDOM){
   if (navigator.appName=="Netscape") moz=true;
   else moz=false;
   }
}
// ----------------------
function redireccionaNavegador(){
detectaNavegador();
if (moz==true) location.href="nie/index.html"; // <-- canviar per "nmz/index.html"
	else location.href="nie/index.html";
}
// ----------------------
function escriuGaleta(nom,valor,dies){
	var data=new Date;
	data.setTime(data.getTime() + dies * 24 * 3600000);
	var caduca="; expires=" + data.toGMTString();
	ruta="; path=/";
	galeta=nom + "=" + valor + caduca + ruta;
	document.cookie=galeta;
}
// ----------------------
function redireccionaIdioma(){
	if (document.cookie=="idioma=cat") location.href="cat/index.html";
		else if (document.cookie=="idioma=esp") location.href="esp/index.html";
				else if (document.cookie=="idioma=fra") location.href="fra/index.html";
						else if (document.cookie=="idioma=eng") location.href="eng/index.html";
								else if (document.cookie=="idioma=ita") location.href="ita/index.html";
else location.href="intro.html";
}
// ----------------------
function redireccionaIdiomaCat(){
	if (document.cookie=="idioma=cat") location.href="cat/index.html";
		else if (document.cookie=="idioma=esp") location.href="esp/index.html";
				else if (document.cookie=="idioma=fra") location.href="fra/index.html";
						else if (document.cookie=="idioma=eng") location.href="eng/index.html";
								else if (document.cookie=="idioma=ita") location.href="ita/index.html";
else location.href="cat/index.html";
}
// ----------------------
function redireccionaNavegadorIdioma(){
detectaNavegador();
if (moz==true && document.cookie=="idioma=catala") location.href="nmz/cat/presenta.html";
	else if (moz==false && document.cookie=="idioma=catala") location.href="nie/cat/presenta.html";
		else if (moz==true && document.cookie=="idioma=castellano") location.href="nmz/cast/presenta.html";
			else if (moz==false && document.cookie=="idioma=castellano") location.href="nie/cast/presenta.html";
else location.href="nie/cast/presenta.html";
}
// ----------------------
function redireccionaInici(){
	location.href="http://www.campingplatjallarga.com/cat";
}
// ----------------------
function tastaGaletes(){
	escriuGaleta('tasta','si','1');
	if (document.cookie=="tasta=si"){
		redirecciona();
		}
		else {
			alert("El vostre navegador no te activades les galetes.");
			location.href="";
			}
}
// ----------------------
function finestraNova(url,nom,mides) {
  window.open(url,nom,mides);
}