	var idioma="E";
	var idio;
    url = document.location.href ; 
    // división en trozos con la barra como delimitador. 
    partes = url.split('_'); 
    // obtención del nombre de la página y sus parámetros. 
          lenguaje=partes[partes.length-1];
                    
          letes = lenguaje.split('.');          
          lenfin=letes[letes.length-2];
          
          if(lenfin=="sp")
          {//alert('entra a SP-->'+lenfin);
          idioma="S";}
          else
          {//alert('entra a en-->'+lenfin);
          idioma="E";}
           
    /*      alert('IDIOMA='+idioma); 
    alert(partes[partes.length-1]); 
    alert(partes[partes.length-2]); */

	function OpenWin (theURL,winName,features){
	  window.open(theURL,winName,features)
	}

	function swapImage(nameImage,newImage){
	    document.images[nameImage].src=newImage;
	}

	function mostrar(nombreCapa){
		document.getElementById(nombreCapa).style.visibility="visible";
	}

	function ocultar(nombreCapa){
		document.getElementById(nombreCapa).style.visibility="hidden";
	}

	function swapImage1(nameInput,newImage){
		document.getElementById(nameInput).src=newImage;
	}

	/*---------------------------Begin menu despleglable vertical HOME------------------------------*/
	var state = "plegado";
	var images = new Array('images/'+idioma+'/general.gif','images/'+idioma+'/fishing.gif');
	var values = new Array('abouta.general','abouta.fishing');


	function interChangeImage(i,j,z){
		var aux;
		aux=document.getElementById('imagen'+i).src;
		document.getElementById('imagen'+i).src = images[z];
		document.getElementById('imagen'+j).src=aux;
	}

	function interChangeValue(i,j,z){
		var aux;
		aux=document.getElementById('imagen'+i).value;
		document.getElementById('imagen'+i).value = values[z];
		document.getElementById('imagen'+j).value= aux;
	}

	function desplegar(init,finish,cantSubMenu){
	   var i,j,aux,capa;
	   var z=0;
	   for(i=init;i<=cantSubMenu;i++){
			j=i+cantSubMenu;
			capa=i+cantSubMenu+1;
			interChangeImage(i,j,z);
			interChangeValue(i,j,z);
			z++;
	   }
		  for(i=finish;i>=finish-cantSubMenu+1;i--)
			mostrar('capa'+i);
	}

   function plegar(init,finish,cantSubMenu){
	  var i,j,aux;
	  for(i=init;i<=finish-cantSubMenu;i++){
		  j=i+cantSubMenu;
		  document.getElementById('imagen'+i).src=document.getElementById('imagen'+j).src;
		  document.getElementById('imagen'+i).value=document.getElementById('imagen'+j).value;
	   }

	  for(i=finish;i>=finish-cantSubMenu+1;i--)
		  ocultar('capa'+i);
	}

   function drawMenu(init,finish,cantSubMenu){
		if (state == "plegado"){
		   desplegar(init,finish,cantSubMenu);
		   state="desplegado";}
		else
		  {plegar(init,finish,cantSubMenu);
		   state="plegado";}
   }


	function cambiarImagenesMenuH(nImput0,scr0,nImput1,scr1,nImput2,scr2,nImput3,scr3,nImput4,scr4,nImput5,scr5,nImput6,scr6)
	{
		swapImage1(nImput0,scr0);
		swapImage1(nImput1,scr1);
		swapImage1(nImput2,scr2);
		swapImage1(nImput3,scr3);
		swapImage1(nImput4,scr4);

		if(state=="desplegado"){
			swapImage1(nImput5,scr5);
			swapImage1(nImput6,scr6);
		}

	}
//-----------------------------------------------------este escript controla --------------------------
	function primercaracter(cadena){
		var firstchar = cadena.slice (0,1);
		if(cadena[0]==firstchar[0].toUpperCase())
		{//alert ("la primera es maysucula");
		return true;
		}
		else{
		//alert ("la primera NO es maysucula");
		return false;
		}
	}

	  function validaNombres(TextFaild, Mensaje){
			if(TextFaild.value==""){
				alert(Mensaje);
				TextFaild.focus();
				return false
			}
	  	return true;
	  }
	   function comprobar(Cadena,minimo,maximo){
   			if ( (Cadena.value.length >=minimo) && (Cadena.value.length < maximo) ){
   					var permitidos = "*bacdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789-_@.?!():";
   					for (i=0; i<Cadena.value.length; i++){
    	  			if ( permitidos.indexOf(Cadena.value.substr(i,1)) == -1){
    	  					return false;
    	  				}
   					}
   					return true;
  			}
   			return false;
		}

	  function comprobarn(Cadena){
		if(primercaracter(Cadena.value)){
   			if (comprobar(Cadena,1,20)) {
   					return true;
			}
		}
    	  return false;
		}



	  function validarEmail(TextFaild){
		  if(TextFaild.value==''){
			  TextFaild.focus();
			  TextFaild.select();
			  return false;
			  }
	  		prim = TextFaild.value.indexOf("@")
				if(prim < 2) {
					if(idio=='E')
					{alert("Email address invalid, please insert a valid email."); }
					else
					{alert("El email es incorrecto, por favor ingrese un email válido."); }
					TextFaild.focus();
					TextFaild.select();
					return false;
				}
				if(TextFaild.value.indexOf("@",prim + 1) != -1) {
					if(idio=='E')
					{alert("Email address invalid, please insert a valid email."); }
					else
					{alert("El email es incorrecto, por favor ingrese un email válido."); }
					TextFaild.focus();
					TextFaild.select();
					return false;
				}
				if(TextFaild.value.indexOf(".") < 1) {
					if(idio=='E')
					{alert("Email address invalid, please insert a valid email."); }
					else
					{alert("El email es incorrecto, por favor ingrese un email válido."); }
					TextFaild.focus();
					TextFaild.select();
					return false;
				}
				if(TextFaild.value.indexOf(" ") != -1) {
					if(idio=='E')
					{alert("Email address invalid, please insert a valid email."); }
					else
					{alert("El email es incorrecto, por favor ingrese un email válido."); }
					TextFaild.focus();
					TextFaild.select();
					return false;
				}
				if(TextFaild.value.indexOf(".@") > 0) {
					if(idio=='E')
					{alert("Email address invalid, please insert a valid email."); }
					else
					{alert("El email es incorrecto, por favor ingrese un email válido."); }
					TextFaild.focus();
					TextFaild.select();
					return false;
				}
				if(TextFaild.value.indexOf("@.") > 0) {
					if(idio=='E')
					{alert("Email address invalid, please insert a valid email."); }
					else
					{alert("El email es incorrecto, por favor ingrese un email válido."); }
					TextFaild.focus();
					TextFaild.select();
					return false;
				}
				if(TextFaild.value.indexOf("/") > 0) {
					if(idio=='E')
					{alert("Email address invalid, please insert a valid email."); }
					else
					{alert("El email es incorrecto, por favor ingrese un email válido."); }
					TextFaild.focus();
					TextFaild.select();
					return false;
				}
				if(TextFaild.value.indexOf("[") > 0) {
					if(idio=='E')
					{alert("Email address invalid, please insert a valid email."); }
					else
					{alert("El email es incorrecto, por favor ingrese un email válido."); }
					TextFaild.focus();
					TextFaild.select();
					return false;
				}
				if(TextFaild.value.indexOf("]") > 0) {
					if(idio=='E')
					{alert("Email address invalid, please insert a valid email."); }
					else
					{alert("El email es incorrecto, por favor ingrese un email válido."); }
					TextFaild.focus();
					TextFaild.select();
					return false;
				}
				if(TextFaild.value.indexOf("(") > 0) {
					if(idio=='E')
					{alert("Email address invalid, please insert a valid email."); }
					else
					{alert("El email es incorrecto, por favor ingrese un email válido."); }
					TextFaild.focus();
					TextFaild.select();
					return false;
				}
				if(TextFaild.value.indexOf(")") > 0) {
					if(idio=='E')
					{alert("Email address invalid, please insert a valid email."); }
					else
					{alert("El email es incorrecto, por favor ingrese un email válido."); }
					TextFaild.focus();
					TextFaild.select();
					return false;
				}
				if(TextFaild.value.indexOf("..") > 0) {
					if(idio=='E')
					{alert("Email address invalid, please insert a valid email."); }
					else
					{alert("El email es incorrecto, por favor ingrese un email válido."); }

					TextFaild.focus();
					TextFaild.select();
					return false;
				}
			return true;
	  }
	  	function validarTextField(vTextField){
	      	if (!comprobarn(vTextField)){
				alert("Error:La primera letra debe empezar con mayuscula o el texto contiene caracteres inválidos");
				vTextField.focus();
				vTextField.select();
				return false;
	      	}
	      	return true;
	  	}

		function validarNombre(vTextField){
	      	if (!comprobarn(vTextField)){
				alert("Error:La primera letra debe empezar con mayuscula o el texto contiene caracteres inválidos");
				vTextField.focus();
				vTextField.select();
				return false;
	      	}
	      	return true;
	  	}
		function validarUsuario(vTextField){
	      	if (!comprobar(vTextField,3,15)){
				alert("Error:debde tener entre 3 y 15 caracteres o el texto contiene caracteres inválidos");
				vTextField.focus();
				vTextField.select();
				return false;
	      	}
	      	return true;
	  	}


   function validarCaracteres(){
	    	if (validarNombre(document.forms.form1.nombre))
				if(validarNombre(document.forms.form1.apellido))
					if(validarUsuario(document.forms.form1.usuario))
						if(validarpassword(document.forms.form1.password))
							if(igual(document.forms.form1.password,document.forms.form1.cpassword))
		 					  if(igual(document.forms.form1.codigo,document.forms.form1.ccodigo))
								if(igual(document.forms.form1.email,document.forms.form1.cemail))
								
								return true;
			return false;
	    }
		function valida(idi){

			idio=idi;
		if(idi=='E')
			{
				if (validaNombres(document.forms.form1.name, 'Please, insert your name'))
							if (validaNombres(document.forms.form1.text, 'Please, insert your message'))					  
								if (validaNombres(document.forms.form1.email, 'Please, insert your email')){
								if(validarEmail(document.forms.form1.email))
									return validarCaracteres();
								}						  							  

			}
		else
			{
				if (validaNombres(document.forms.form1.name, 'Por favor, ingrese su nombre'))
							if (validaNombres(document.forms.form1.text, 'Por favor, ingrese su mensaje'))							
								if(validaNombres(document.forms.form1.email, 'Por favor, ingrese su email')){
								 if(validarEmail(document.forms.form1.email))
									return validarCaracteres();
								}
							  

			}
			return false;
	   }

//////
function checkEmail(TextFaild, idio){
		  if(TextFaild.value==''){
			  TextFaild.focus();
			  TextFaild.select();
			  return false;
			  }
	  		prim = TextFaild.value.indexOf("@")
				if(prim < 2) {
					if(idio=='E')
					{alert("Email address invalid, please insert a valid email."); }
					else
					{alert("El email es incorrecto, por favor ingrese un email válido."); }
					TextFaild.focus();
					TextFaild.select();
					return false;
				}
				if(TextFaild.value.indexOf("@",prim + 1) != -1) {
					if(idio=='E')
					{alert("Email address invalid, please insert a valid email."); }
					else
					{alert("El email es incorrecto, por favor ingrese un email válido."); }
					TextFaild.focus();
					TextFaild.select();
					return false;
				}
				if(TextFaild.value.indexOf(".") < 1) {
					if(idio=='E')
					{alert("Email address invalid, please insert a valid email."); }
					else
					{alert("El email es incorrecto, por favor ingrese un email válido."); }
					TextFaild.focus();
					TextFaild.select();
					return false;
				}
				if(TextFaild.value.indexOf(" ") != -1) {
					if(idio=='E')
					{alert("Email address invalid, please insert a valid email."); }
					else
					{alert("El email es incorrecto, por favor ingrese un email válido."); }
					TextFaild.focus();
					TextFaild.select();
					return false;
				}
				if(TextFaild.value.indexOf(".@") > 0) {
					if(idio=='E')
					{alert("Email address invalid, please insert a valid email."); }
					else
					{alert("El email es incorrecto, por favor ingrese un email válido."); }
					TextFaild.focus();
					TextFaild.select();
					return false;
				}
				if(TextFaild.value.indexOf("@.") > 0) {
					if(idio=='E')
					{alert("Email address invalid, please insert a valid email."); }
					else
					{alert("El email es incorrecto, por favor ingrese un email válido."); }
					TextFaild.focus();
					TextFaild.select();
					return false;
				}
				if(TextFaild.value.indexOf("/") > 0) {
					if(idio=='E')
					{alert("Email address invalid, please insert a valid email."); }
					else
					{alert("El email es incorrecto, por favor ingrese un email válido."); }
					TextFaild.focus();
					TextFaild.select();
					return false;
				}
				if(TextFaild.value.indexOf("[") > 0) {
					if(idio=='E')
					{alert("Email address invalid, please insert a valid email."); }
					else
					{alert("El email es incorrecto, por favor ingrese un email válido."); }
					TextFaild.focus();
					TextFaild.select();
					return false;
				}
				if(TextFaild.value.indexOf("]") > 0) {
					if(idio=='E')
					{alert("Email address invalid, please insert a valid email."); }
					else
					{alert("El email es incorrecto, por favor ingrese un email válido."); }
					TextFaild.focus();
					TextFaild.select();
					return false;
				}
				if(TextFaild.value.indexOf("(") > 0) {
					if(idio=='E')
					{alert("Email address invalid, please insert a valid email."); }
					else
					{alert("El email es incorrecto, por favor ingrese un email válido."); }
					TextFaild.focus();
					TextFaild.select();
					return false;
				}
				if(TextFaild.value.indexOf(")") > 0) {
					if(idio=='E')
					{alert("Email address invalid, please insert a valid email."); }
					else
					{alert("El email es incorrecto, por favor ingrese un email válido."); }
					TextFaild.focus();
					TextFaild.select();
					return false;
				}
				if(TextFaild.value.indexOf("..") > 0) {
					if(idio=='E')
					{alert("Email address invalid, please insert a valid email."); }
					else
					{alert("El email es incorrecto, por favor ingrese un email válido."); }

					TextFaild.focus();
					TextFaild.select();
					return false;
				}
			return true;
	  }
	
	function ltrim(str) {
        for(var k = 0; k < str.length && isWhitespace(str.charAt(k)); k++);
        return str.substring(k, str.length);
    }
    function rtrim(str) {
        for(var j=str.length-1; j>=0 && isWhitespace(str.charAt(j)) ; j--) ;
        return str.substring(0,j+1);
    }
    function trim(str) {
        return ltrim(rtrim(str));
    }
    function isWhitespace(charToCheck) {
        var whitespaceChars = " \t\n\r\f";
        return (whitespaceChars.indexOf(charToCheck) != -1);
    }


    function notempty(TextFaild, Mensaje){
       str = trim(TextFaild.value);
            
       if(trim(str)==""){
				if (Mensaje!="") {
                    alert(Mensaje);
                    TextFaild.focus();
                 }
				return false
			}
	  	return true;
      
   }
  function checkName(name, msg){
		var er_names = /^([a-z]|[A-Z]|_|Ç|ç|&|-|\.|\'|á|é|í|ó|ú|Á|É|Í|Ó|Ú|Ñ|ñ|à|è|ì|ò|ù|À|È|Ì|Ò|Ù|ä|ë|ï|ö|ü|Ä|Ë|Ï|Ö|Ü|\s)+$/;
		if (er_names.test(name.value))
		     return true;
		else{
             alert(msg);
             name.focus();
             return false;
         }
   }
  function validaFormContactUs(idioma){
  
	   if(idioma=='E')
			{
				if (notempty(document.forms.form1.name, 'Please, insert your name'))
                  if (checkName(document.forms.form1.name, 'The value of Full Name contains illegal characters'))
                    if (notempty(document.forms.form1.email, 'Please, insert your email'))
                      if (checkEmail(document.forms.form1.email, idioma))
                        if (!notempty(document.forms.form1.subject, '') || checkName(document.forms.form1.subject, 'The value of Subject contains illegal characters'))
                          if (notempty(document.forms.form1.text, 'Please, insert your message'))
                              return true;
                return false;

			}
		else
			{
				if (notempty(document.forms.form1.name, 'Por favor, ingrese su nombre'))
                  if (checkName(document.forms.form1.name, 'El campo Nombre contiene caracteres no permitidos'))
					 if(notempty(document.forms.form1.email, 'Por favor, ingrese su email'))
						 if(checkEmail(document.forms.form1.email, idioma))
                            if (!notempty(document.forms.form1.subject, '') || checkName(document.forms.form1.subject, 'El campo Título contiene caracteres no permitidos'))
                               if (notempty(document.forms.form1.text, 'Por favor, ingrese su mensaje'))
                                   return true;
								
                 return false;

			}
		return false;
	   }












   function stoperror(){
                        return true
                }
                window.onerror=stoperror

//-----------------------------------------------------------------------------------------
	function swapImagesMenuH(image,scrNew){
		var image0,image1,image2,image3,image4,image5,image6;
		image0 = 'images/'+idioma+'/abouta.gif';
		image1 = 'images/'+idioma+'/general.gif';
		image2 = 'images/'+idioma+'/fishing.gif';
		image3 = 'images/'+idioma+'/regions.gif';
		image4 = 'images/'+idioma+'/lodges.gif';
		image5 = 'images/'+idioma+'/species.gif';
		image6 = 'images/'+idioma+'/riversandlakes.gif';


			if(image == 'abouta')  image0 ='images/'+idioma+'/aboutaVisited.gif';//'images/aboutaVisited.gif'
			if(image == 'abouta.general') image1='images/'+idioma+'/generalVisited.gif';
			if(image == 'abouta.fishing')  image2='images/'+idioma+'/fishingVisited.gif';
			if(image == 'regions') image3='images/'+idioma+'/regionsVisited.gif';
			if(image == 'lodges')  image4='images/'+idioma+'/lodgesVisited.gif';
			if(image == 'specie') image5='images/'+idioma+'/speciesVisited.gif';
			if(image == 'riverlakes')  image6='images/'+idioma+'/riversandlakesVisited.gif';


			if(state == "desplegado")
			   cambiarImagenesMenuH('imagen0',image0,'imagen1',image1,'imagen2',image2,'imagen3',image3,'imagen4',image4,'imagen5',image5,'imagen6',image6);
			if(state == "plegado")
			   cambiarImagenesMenuH('imagen0',image0,'imagen1',image3,'imagen2',image4,'imagen3',image5,'imagen4',image6);
	}
   /*---------------------------End menu despleglable vertical HOME------------------------------*/

	var stateP = "plegado";

	function desplegarMP(init,finish){
		var i;
		swapImage1('imagen'+init,'images/'+idioma+'/oneweek.gif');
		for(i=init+1;i<=finish;i++)
		    mostrar('capa'+i);

		document.getElementById('imagen3').value='suggesteditineraries.oneweek.';

	}

	function plegarMP(init,finish){
		var i;
		swapImage1('imagen'+init,'images/'+idioma+'/whatyouneed.gif');
		for(i=init+1;i<=finish;i++)
		    ocultar('capa'+i);

		document.getElementById('imagen3').value='whatyouneed.';
	}

   function drawMenuMP(init,finish){

		if (stateP == 'plegado'){
		   desplegarMP(init,finish);
		   stateP="desplegado";
		   }
		else
		  { plegarMP(init,finish);
		   stateP="plegado";}
   }


	function cambiarImagenesMenuHP(nImput0,scr0,nImput1,scr1,nImput2,scr2,nImput3,scr3,nImput4,scr4,nImput5,scr5,nImput6,scr6,nImput7,scr7)
	{
		swapImage1(nImput0,scr0);
		swapImage1(nImput1,scr1);
		swapImage1(nImput2,scr2);
		swapImage1(nImput3,scr3);

		if(stateP == "desplegado"){
		    swapImage1(nImput4,scr4);
			swapImage1(nImput5,scr5);
			swapImage1(nImput6,scr6);
			swapImage1(nImput7,scr7);
		}

	}


	function cambiarContenidoHome(itemMenu){
            var texto;
            if((itemMenu == 'general')&&(idioma == 'E')){
              texto+='<div  style="overflow-y:auto;">' 
              texto='<span class="titulo">General</span><br>'
			  texto+='<p>The population of Argentina are mostly direct descendants of Italian and Spanish immigrants. Buenos Aires has one of the largest Jewish communities in the world and there are English, German and Welsh colonies in both the capital city and the countryside. Historian Alfred Crosby called the River Plate (Rio de la Plata) region a "neo-Europe", where transatlantic plants and animals transformed the natural environment and ensured the demise of pre-Columbian cultures.</p>'
              texto+='<p>During the early-twentieth century Argentina grew at an astonishing rate, feeding its European parents with grains and beef, at one point becoming the sixth richest economy in the world. During that time it developed culturally as well, making its mark on literature with writers such as Jorge Luis Borges and Julio Cortazar, whilst exporting tango and its fabulous wine to the rest of the world.</p>'
              texto+='<p>Although the later part of the last century saw Argentina struggle with the same political and economical instability as its neighbours, Argentina is still a culturally rich country, with breath-taking scenery, where foreigners feel at ease and inconspicuous.</p>'
              texto+='<table width="100%"  border="0" cellspacing="10" class="texto">'
              texto+='<tr><td valign="top"><strong>SIZE</strong></td><td>2,766,290 sq km (1,719,266 sq miles) <br> That is over 2.5 times the size of Alaska and 18.5 times the size of the UK.</td></tr>'
			        texto+='<tr><td><strong>POPULATION</strong></td> <td>40 million</td></tr>'
			        texto+='<tr><td><strong>CAPITAL CITY</strong></td><td valign="top">Buenos Aires</td></tr>'
					    texto+='<tr><td><strong>LANGUAGE</strong></td><td>Spanish, though English is widely spoken.</td></tr>'
              texto+='<tr><td valign="top"><strong>CURRENCY</strong></td><td>Peso (Arg$) <br>US$1 = Arg$3 <br>GBP1 = Arg$6 <br>Euro1 = Arg$4</td></tr>'
	            texto+='<tr><td valign="top"><strong>CUISINE </strong></td><td>Red meat and red wine are the specialities. In Buenos Aires, pizza and ice cream are also very high quality.</td></tr>'
					    texto+= '</table><br><br>'
              texto+='</div>' 

		}
		else if((itemMenu == 'general')&&(idioma == 'S')){
			  texto='<span class="titulo">Información General</span><br>'
			  texto+='<p>La población de  Argentina se compone en su mayoría de descendientes directos de inmigrantes Italianos y Españoles. Buenos Aires también tiene una de las comunidades Judías mas grandes en el mundo y también contó con inmigrantes  Ingleses, Alemanes, Galeses y Franceses, tanto en la Capital como en el interior del país. El historiador Alfred Crosby llamó a la región del Rió de la Plata la "Nueva Europa", donde plantas y animales traídos de varias regiones de Europa transformaron el paisaje natural haciendo de esta región una mezcla única del nuevo y viejo continente, diferenciándolo de los demás países de cultura pre-colombina.</p>'
              texto+='<p>Durante principios del siglo veinte, Argentina tuvo un crecimiento sobrecogedor, siendo el principal proveedor de granos y carne de Europa, convirtiéndose en el sexto país más rico en el mundo. Es en este tiempo que se desarrolla culturalmente, dejando su legado en la literatura con exponentes como  Jorge Luís Borges y Julio Cortazar, dando a conocer el tango en el resto del mundo y exportando sus fabulosos vinos.</p>'
              texto+='<p>Aunque en la última etapa del siglo veinte vimos a  Argentina padecer la misma inestabilidad política y económica que sus países vecinos, Argentina todavía es un país culturalmente rico con escenarios naturales que lo dejarán atónito, donde los extranjeros se pueden sentir relajados y seguros.</p>'
              texto+='<table width="100%"  border="0" cellspacing="10" class="texto">'
              texto+='<tr><td valign="top"><strong>TAMAÑO</strong></td><td>2,766,290  km (1,719,266  millas) </td></tr>'
			  texto+='<tr><td><strong>POBLACION</strong></td> <td>40 millones</td></tr>'
			  texto+='<tr><td><strong>CIUDAD CAPITAL</strong></td><td valign="top">Buenos Aires</td></tr>'
			  texto+='<tr><td><strong>IDIOMA</strong></td><td>Español, aunque se habla mucho Inglés.</td></tr>'
              texto+='<tr><td valign="top"><strong>MONEDA</strong></td><td>Peso (Arg$) <br>US$1 = Arg$3 <br>GBP1 = Arg$6 <br>Euro1 = Arg$4</td></tr>'
	          texto+='<tr><td valign="top"><strong>COCINA </strong></td><td>El vino tinto y las carnes rojas son la especialidad. En Buenos Aires, la pizza y los helados son también de excelente calidad debido a la influencia Italiana.</td></tr>'
			  texto+= '</table><br><br>'


		}
		else if((itemMenu == 'fishing')&&(idioma == 'E'))
		    {
            texto+='<div  style="overflow-y:auto;">' 
		    texto='<span class="titulo">Fishing</span><br>'
		    texto+='<p>All rivers and lakes are open to the public - a fishing license is required - but the land surrounding the water is commonly privately owned. Argentina operates a "catch and release" policy which has helped sustain the extraordinary size, quantity and quality of the fish found in it’s many rivers and lakes.</p>'
		    texto+='<p>Lodges provide the fishing accommodation for the vast majority of anglers visiting Argentina. Warm, friendly and purpose built, the lodges provide all your board and lodging plus expert local guides. Both the local guides and the managers of the lodges generally share a passion for, and knowledge of, their native environment that is unparalleled.</p>'
		    texto+='<p>Many of the lodges are situated in such remote areas that internet access is limited, if it exists at all. Therefore setting up websites, maintaining email correspondence and managing pick-ups and transfers thousands of miles away in Buenos Aires can be extremely difficult. Especially when they, like you, are far more interested in what&acute;s happening out on the water!</p>'
			texto+='<span class="subtitulo">History</span><br>'
			        texto+='<p>Early immigrants reportedly tried to introduce trout to Argentina without success. In 1893, an unnamed Englishman tried to introduce rainbow trout into Arroyo Moron, a small stream in the suburbs of Buenos Aires. The stream, however, became to warm during the summer and the fish did not survive.</p>'
			        texto+='<p>Around that time, surveyor and enthusiastic explorer, Francisco &quot;Perito&quot; Moreno, was sent by the Argentine government to explore the region of Patagonia and survey the Chilean frontier. During his studies Moreno noted the abundance of lakes and streams, the lack of fish and the huge potential for freshwater fisheries. Moreno recommended to the government that fish be introduced to the area for commercial and sporting purposes.</p>'
              texto+='<p>Eventually the Argentine government hired the foremost fisheries biologist in the United States, John W. Titcomb, to see if Moreno s suggestion held any weight. Titcomb arrived in Argentina in 1903 and spent a few months sampling water quality and making fluvial measurements near the Nahuel Huapi lake in Neuquen. Undeterred by the difficulty of the trip (by train followed by 19 days on horse and cart), Titcomb encouraged the Argentine government to contact E. A. Tulian in the United States and put in an order for the eggs of every type of fresh-water fish then popular in the United States. </p>'
              texto+='<p>Tulian assembled a shipment of seven boxes and transported them to Argentina via Britain - to make use of the large refrigerated compartments which were then only available on the British steamships used to transport Argentine beef to England. On 4th March 1904, after a journey of 50 days, Tulian reached the temporary hatchery at the Nahuel Huapi lake with seven boxes containing: </p>'
	            texto+='<table  border="0" class="texto" >'
              texto+='<tr><td> Whitefish</td><td> <em>Coregonus clupeaformis</em></td><td> 1,000,000 eggs</td></tr>'
			        texto+='<tr><td> Brook Trout</td> <td> <em>Salvelinus fontinalis</em></td><td> 102,700 eggs</td> </tr>'
			        texto+='<tr><td> Lake Trout</td><td> <em>Salvelinus namaycush</em></td><td> 53,000 eggs</td></tr>'
					    texto+='<tr><td> Landlocked Atlantic Salmon</td> <td> <em>Salmo salar sebago</em></td><td> 50,000 eggs</td></tr>'
					    texto+= '</table><br><br>'
              texto+='<p>Whilst the Whitefish disappeared without a trace, the other fish did well in the Nahuel Huapi lake and were distributed around several nearby lakes. The delighted biologists immediately asked for rainbow trout eggs to be brought down by fellow American, Mr Ormsby. Due to poor roads and blizzards, the eggs journey was slowed and they began to hatch en route. Rather than lose the whole shipment, Ormsby instead put the eggs into a small lake 200 miles short of the hatchery at Nahuel Huapu.</p>'
              texto+='<p>Salmonid introduction contiued in Patagonia for six more years. Brown trout, sockeye Salmon, silver salmon, chinook salmon and more brooks, lake trout, and Atlantic salmon were all introduced throughout the region. Other hatcheries were established and, like the original at Nahuel Huapi, continued with an aggressive stocking program for many years.</p>'
              texto+='<p>It is thanks to these efforts that the species listed below are now abundantly fished throughout Patagonia and to the north of Argentina, alongside the local species. Famously, in some waters in Argentina, you can still catch on the same day four of the different species of salmonid originally brought to Argentina over one hundred years ago; the brown, the raindow, the brook and the landlocked salmon. </p>'
             /* texto+='<p class="subtitulo">A note on the lodges</p>'
              texto+='<p>All rivers and lakes are open to the public - a fishing license is required - but the land surrounding the water is commonly privately owned, often by foreign investors. The lodges which operate on this land provide accomodation, boats and guides with local knowledge. When you arrive at the local airport, a member of the lodge staff will be there to greet you and the lodge will take care of everything until they drop you back at the airport after your stay.</p>'*/
               texto+= '<br><br><br>'
               texto+='</div>' 
		}
		else if((itemMenu == 'fishing')&&(idioma == 'S'))
		    {texto='<span class="titulo">Pesca</span><br>'
			 texto+='<p>En Argentina, todos los ríos y lagos son públicos, pero las tierras que rodean esos lagos y ríos, son comúnmente privadas.</p>'
			 texto+='<p>Existe lo que se denomina,  la política de la devolución al rio de todo lo pescado.  El tamaño, cantidad y calidad de la pesca se ha beneficiado mucho con esta política introducida.</p>'
                         texto+='<span class="subtitulo">Historia</span><br>'
			        texto+='<p>Los primeros inmigrantes reportaron haber intentado introducir trucha en Argentina sin éxito. En 1893, un Inglés anónimo, trato de introducir trucha arco iris en el Arroyo Morón, en las afueras de Buenos Aires. El arroyo, sin embargo, se volvió demasiado cálido en el verano, y los peces no sobrevivieron.</p>'
			        texto+='<p>Para ese entonces, un entusiasta aventurero, Francisco "Perito" Moreno, fue enviado por el gobierno Argentino a explorar la región de la Patagonia y a inspeccionar la frontera con Chile. Durante sus estudios, Moreno noto la abundancia de lagos y riachos, la ausencia de peces y la gran posibilidad que esas frescas aguas daban. Moreno recomendó al gobierno introducir peces con propósito comercial y deportivo.</p>'
              texto+='<p>Eventually the Argentine government hired the foremost fisheries biologist in the United States, John W. Titcomb, to see if Moreno s suggestion held any weight. Titcomb arrived in Argentina in 1903 and spent a few months sampling water quality and making fluvial measurements near the Nahuel Huapi lake in Neuquen. Undeterred by the difficulty of the trip (by train followed by 19 days on horse and cart), Titcomb encouraged the Argentine government to contact E. A. Tulian in the United States and put in an order for the eggs of every type of fresh-water fish then popular in the United States. </p>'
              texto+='<p>Tulian despacho un cargamento de siete cajas de huevos, los cuales fueron transportados a Argentina, vía Gran Britania – esto se debió a la necesidad de utilizar los refrigeradores que solo las embarcaciones utilizadas para transportar carne de Argentina a Inglaterra tenían. En Marzo de 1904, después de un viaje de 50 días, Tulian llego al lago Nahuel Huapi con siete cajas que contenían: </p>'
	            texto+='<table class="texto" >'
              texto+='<tr><td> Pescado blanco</td><td> <em>Coregonus clupeaformis</em></td><td> 1,000,000 huevos</td></tr>'
	      texto+='<tr><td> Trucha de arroyo</td> <td> <em>Salvelinus fontinalis</em></td><td> 102,700 huevos</td> </tr>'
	      texto+='<tr><td> Trucha de lago</td><td> <em>Salvelinus namaycush</em></td><td> 53,000 huevos</td></tr>'
	      texto+='<tr><td> Salmon encerrado</td> <td> <em>Salmo salar sebago</em></td><td> 50,000 huevos</td></tr>'
              texto+= '</table><br />'
              texto+='<p>Mientras que el pescado blanco desapareció sin dejar rastros, los otros peces se adaptaron exitosamente al Nahuel Huapi y se distribuyeron por otros lagos cercanos. Los biólogos, encantados por los resultados, le encargaron a su amigo  Mr Ormsby, huevos de trucha arco iris. Debido a la precariedad de los caminos y las constantes neviscas, el viaje de los huevos se demoró. En vez de perder toda la embarcación, Ormsby puso los huevos en un pequeño lago a  200 millas del Nahuel Huapu.</p>'
              texto+='<p>La introducción del salmón continúo en la Patagonia por seis años más. También se introdujo en la región, Trucha Marrón, salmón sockeye, salmón planteado, salmón Chinook y más salmón de arroyo, trucha de lago, y salmón del Atlántico. Se establecieron otros criaderos de peces, como el original en el  Nahuel Huapi, continuándose con un programa exhaustivo por muchos años.</p>'
              texto+='<p>Gracias a esos esfuerzos es que todas esas especies mencionadas se pescan en abundancia en la Patagonia y en el norte de la Argentina, junto con las especies locales. Es conocido, que en algunas aguas, todavía se pueden pescar cuatro especies diferentes de peces originalmente traídas a la Argentina mas de cien años atrás (trucha marrón, arco iris, de arroyo, y salmón encerrado) en el mismo día.</p>'
              /*texto+='<p class="subtitulo">A note on the lodges</p>'
              texto+='<p>All rivers and lakes are open to the public - a fishing license is required - but the land surrounding the water is commonly privately owned, often by foreign investors. The lodges which operate on this land provide accomodation, boats and guides with local knowledge. When you arrive at the local airport, a member of the lodge staff will be there to greet you and the lodge will take care of everything until they drop you back at the airport after your stay.</p>'*/
               texto+= '<br><br>'
		}
    document.getElementById('contenedor').scrollTop='0';
   	document.getElementById('contenedor').innerHTML = texto;
	}

	function cambiarContenido(itemMenu){
		var texto;
		/****************************** BEGIN 'whychoose' **********************************/
		if((itemMenu == 'whychoose')&&(idioma == 'E')){
				texto='<br> <table cellpadding="0" cellspacing="0" width="100%"  border="0">'
				texto+='          <tr style="border: 0px solid rgb(0, 0, 0); background-color: rgb(201, 208, 216); width: 100%; height: 15px;" class="titulo">'
				texto+='               <td>&nbsp;&nbsp;Your experience </td>'
				texto+='               <td>Your choice</td>'
				texto+='              <td align="right">Your fish&nbsp;&nbsp;</td>'
				 
                texto+='</tr><td></td><tr>'
                texto+='</tr><tr>'
                texto+='<td colspan="3" ><div style="overflow: hidden; background-color: rgb(201, 208, 216); width: 100%; height: 3px;"><br/>    </div></td></tr>'
                
                texto+='                </table>'
                
				texto+='<div  style="overflow-y:auto;">'
				texto+='<p>Argentina is a vast country, with an enormous variety of superb fly fishing available, and the practicalities of putting together a fishing holiday can often seem a little daunting to the visiting angler. Anglers fishing in a new place for the first time can always benefit from an experienced guide to provide local knowledge. At Longdrift, we also believe that the angler should be involved in the decision making</p>'
				texto+='<p>Our aim is to provide the angler with all the information available and act as the supportive link that connects him/her to the waters they choose to fish and the lodges they choose to visit. Once the angler has decided which regions, lodges or particular rivers and lakes appeal to them, Longdrift can then put the entire holiday together based on the anglers wishes. The angler enjoys personal attention from one-to-one contact with Longdrift while we deal with all the necessary correspondence, flight details, hotel and lodges reservations etc.</p>'
				texto+='<p>At Longdrift, our day-to-day business involves correspondence between lodges and fishermen, meeting and greeting anglers as they pass through Buenos Aires, checking flight times, pick-ups and reservations are to schedule and many other administration issues. We aim to ensure that your holiday runs smoothly and allows you to relax during the moments of travel between leaving home and being greeted by the staff at the lodges.</p>'
				texto+='<p>Booking with us is particularly useful if you are thinking of fishing in more than one location because of the unique service we offer. However, we would like to make clear that, even if you only fish in one location, booking through Longdrift always ensures unparalleled value for money. Our service has the added bonus of full time attention in Buenos Aires, the lowest costs available on all other services (internal flights, hotels etc) and that all aspects of your trip are dealt with through just one contact, Longdrift</p>'
				texto+='<p class="subtitulo">BOOKING THROUGH US ENSURES:</p>'
				texto+='<ul>'
				texto+='  <li>You pay the lowest price available for all of the services: lodges, internal flights, hotels etc</li>'
				texto+='  <li>You receive independent advice and answers to all you queries. </li>'
				texto+='  <li>Support and local knowledge from the moment you make contact with us</li>'
				texto+='  <li>Fair treatment and representation of all lodges in Argentina regardless of size or location.</li>'
				texto+='</ul>'
				texto+='The most complete service available:'
				texto+='<ul>'
				texto+='  <li>We will arrange reservations with the lodge(s) and take care of airport pickups, transfers and all internal flights. All the logistics of your trip will be handled by one contact, Longdrift.</li>'
				texto+='  <li>At Longdrift you will receive independent advice, your preferences are followed and you are guaranteed to pay the best prices available.</li>'
				texto+='  <li>Why not stay an extra day or two in Buenos Aires. Inform us of what you would like to do and let us organise it, be it shopping, tango, opera, golf, polo</li>'
				texto+='  <li>Our personal contact with you starts from the moment you contact us. We will be with you when you arrive in Buenos Aires, oversee your trip during your stay with the lodges and be there to see you home safely when you finally leave.</li>'
				texto+='  <li>You have the possibility of arranging a trip that includes more than one lodge, with all internal flights and any extra activities all taken care of by Longdrift. All holidays can be tailor-made to your requirements</li>'
				texto+='  <li>The most trouble-free, dependable and rewarding service possible.</li>'
				texto+='</ul>'
				texto+='<p>For the greatest fishing adventure of your life, just tell us how you want it to be and let us make it happen </p>'
				texto+='<div>'
				texto+='<p>For enquiries, bookings and more information <span class="contactoLink"><strong><a href="http://www.longdrift.com/contactus_en.html" class="contactoLink">CONTACT US</a></strong></span></p>'
		}
		else if((itemMenu == 'whychoose')&&(idioma == 'S')){  texto='<br> <table width="80%"  border="0">'
              	texto='<br> <table cellpadding="0" cellspacing="0" width="100%"  border="0">'
                texto+='          <tr style="border: 0px solid rgb(0, 0, 0); background-color: rgb(201, 208, 216); width: 100%; height: 15px;" class="titulo">'
                texto+='               <td>&nbsp;&nbsp;Su experiencia </td>'
                texto+='               <td>Su elección</td>'
                texto+='              <td align="right">Su pesca&nbsp;</td>'
                
                
                /*texto+='<tr class="titulo">' VIEJO
              	texto+='         <td>Su experiencia </td>'
              	texto+='         <td>Su elección</td>'
              	texto+='         <td align="right">Su pesca</td>'*/
                
                texto+='</tr><td></td><tr>'
                texto+='</tr><tr>'
                texto+='<td colspan="3" ><div style="overflow: hidden; background-color: rgb(201, 208, 216); width: 100%; height: 3px;"><br/>    </div></td></tr>'
                
                texto+='                </table>'
              	/*texto+=' </tr></table>' VIEJO*/
			    texto+='<div id="peche" style="overflow-y:auto;">'
				texto+='<p>Argentina es un país vasto, con una extraordinaria variedad de pesca con mosca disponible.  La tarea de organizar unas vacaciones de pesca, parece ser una tarea complicada para los visitantes. Aquellos dispuestos a pescar en un lugar nuevo por primera vez siempre se beneficiaran si cuentan con un guía experimentado capaz de transmitir su conocimiento local. En Longdrift, creemos que los pescadores deben participar de la toma de decisiones a la hora de organizar su viaje.</p><br /><br />'
				texto+='<p>Nuestro propósito es proporcionar al pescador toda la información disponible y actuar como el lazo de unión entre estos y las aguas que elijan para pescar o los albergues que escojan para hospedarse. Una vez que el pescador ha decidido la región de su preferencia, que albergues, ríos y lagos le apetecen, Longdrift puede organizar la vacación basándose en las preferencias manifestadas. Disfrutando entonces de un contacto directo con Longdrift mientras nosotros lidiamos con la organización de los vuelos, reservas, etc. etc.</p><br /><br />'
				texto+='<p>En Longdrift, nuestro día a día comprende, contacto entre los hospedajes y los pescadores, reuniones y bienvenidas para aquellos que llegan a Buenos Aires, chequear los vuelos, transfers y reservas  y otras cuestiones administrativas. Queremos que las vacaciones de nuestros clientes transcurran  tranquilamente, permitiendo relajarse durante el transcurso del viaje entre dejar el hogar y llegar al hospedaje elegido.</p><br /><br />'
				texto+='<p>Utilizar este servicio es particularmente práctico si se piensa en pescar en más de un lugar, debido al servicio único que nuestra compañía ofrece. Sin embargo, si planea pescar en un solo lugar, reservar a través de  Longdrift siempre le ofrece un beneficio incomparable por el precio pagado. Atención permanente en Buenos Aires, el costo más bajo en todos los servicios (vuelos domésticos, hoteles etc.) y que todas las cuestiones relativas a su viaje son resueltas en un solo lugar, Longdrift</p><br /><br />'
				texto+='<p class="subtitulo">RESERVAR CON NOSOTROS LE ASEGURA:</p>'
				texto+='<ul>'
				texto+='   <li>Pagar las tarifas m&aacute;s bajas en: alojamientos, vuelos dom&eacute;sticos, hoteles etc.</li>'
				texto+='   <li>Recibir consejos y respuestas independientes a todas sus preguntas.</li>'
				texto+='   <li>Apoyo y conocimiento local desde el momento que hace contacto con nosotros.</li>'
				texto+='   <li>Trato justo y representaci&oacute;n de todos los alojamientos de la Argentina, sin importar su tama&ntilde;o o localización.</li>'
				texto+='</ul>'
				texto+='El servicio m&aacute;s completo disponible en el mercado:';
				texto+='<ul>'
				texto+='   <li>Nos encargaremos de hacer las reservas pertinentes con los hospedajes que haya seleccionado, como as&iacute; también de todos los traslados y reservas de vuelos dom&eacute;sticos. Toda la logística de su viaje ser&sacute; manejada por Longdrift.</li>'
				texto+='   <li>En Longdrift recibir&aacute; consejos independientes. Sus preferencias ser&aacute;n seguidas al pie de la letra y garantizamos que pagara el mejor precio disponible.</li>'
				texto+='   <li>Porque no quedarse un d&iacute;a extra en Buenos Aires. D&iacute;ganos que desea hacer, tango, shopping, opera, golf, polo, y d&eacute;jenos organizarlo.</li>'
				texto+='   <li>Nuestro contacto personal con Usted, comienza desde el momento en que realiza la primera consulta. Estaremos con Usted desde que aterrice en Buenos Aires, supervisando su viaje durante toda su estad&íacute;a, hasta el momento de su partida</li>'
				texto+='   <li>Usted tiene la posibilidad de organizar un viaje que incluye m&aacute;s de un lugar, con todos los vuelos dom&eacute;sticos y actividades extras.</li>'
				texto+='   <li>El servicio m&aacute;s confiable y seguro disponible.</li>'
				texto+='</ul>'
				texto+='<p>Para disfrutar de la aventura m&sacute;s inolvidable de su vida, solo d&iacute;ganos como la so&ntilde;&oacute;, y nosotros la haremos posible.</p><br /><br />'
				texto+= '</div>'
				texto+='<p>Para reservas, consultas o más información, por favor <span class="contactoLink"><strong><a href="http://www.longdrift.com/contactus_sp.html" class="contactoLink">CONT&Aacute;CTENOS</a></strong></span></p>'
		}
		/****************************** END 'whychoose' **********************************/
/**********************************nuevo html********************************************/
else if((itemMenu == 'bsas')&&(idioma=='E')){
texto='<table width="100%" border="0">'
texto+='<tbody>'  
texto+='<br><span class="titulo"> Planning your trip - Buenos Aires</span><br>'
texto+='<table width="100%" border="0"><tr><td valign="top"><div id="contoff1" style="margin: 4px; font-size: 11px; display: block;">All fishing trips to Argentina can be enriched by a couple of extra days in Buenos Aires. Tango, opera, shopping, golf, polo, great restaurants, great wine, and much much more. Simply let us know what activities you are interested in and let us put together the perfect itinerary for you.</div></td></tr></table>'
/*texto+='<tr><td colspan="2"><div style="overflow: hidden; background-color: rgb(201, 208, 216); width: 100%; height: 3px;"/><br/></td></tr></table>'*/
texto+='<table width="100%" border="0"><tr><td valign="top"><div id="conoff" class="subtitulo" style="border: 0px solid rgb(0, 0, 0); background-color: rgb(201, 208, 216); width: 100%; height: 15px;">Hotels</div><div id="contoff1" style="margin: 4px; font-size: 11px; display: block;">Whether you choose to spend a few days in Buenos Aires or decide to pass through as quickly as possible, you will probably be staying in the capital for at least one night. Longdrift will offer you a list of different hotels, varying in price, quality and location, for you to choose from. As well as the centrally based hotels we also can recommend places on the outskirts of the city with their own golf courses. A great way to pass the time whilst waiting for your flight.</div></td>'
texto+='<td valign="top"><img src="images/tour/hoteles.jpg"/></td></tr>'
texto+='<tr><td colspan="2"><div style="overflow: hidden; background-color: rgb(201, 208, 216); width: 100%; height: 3px;"/><br/>	</td></tr></table>'
texto+='<table width="100%" border="0"><tr><td valign="top"><img src="images/tour/teatrocolon.jpg"/></td><td valign="top"><div id="conoff" class="subtitulo" style="border: 0px solid rgb(0, 0, 0); background-color: rgb(201, 208, 216); width: 100%; height: 15px;">Teatro Colon</div><div id="contoff1" style="margin: 4px; font-size: 11px; display: block;">The world famous Colon theatre is breath-taking in its size and beauty. In terms of infrastructure and acoustics it is recognised as being one of the four most important theatres in the world. During its 100 year long history, the stage has been graced by greats such as Ana Pavlova, Rudolf Nureyev, Enrique Caruso and Luciano Pavarotti. Longrift will inform you of the show currently playing, reserve you the seat and get you to and from the show.</div></td></tr>'
texto+='<tr><td colspan="2"><div style="overflow: hidden; background-color: rgb(201, 208, 216); width: 100%; height: 3px;"/><br/>	</td></tr></table>'
texto+='<table width="100%" border="0"><tr><td valign="top"><div id="conoff" class="subtitulo" style="border: 0px solid rgb(0, 0, 0); background-color: rgb(201, 208, 216); width: 100%; height: 15px;">Tango</div><div id="contoff1" style="margin: 4px; font-size: 11px; display: block;">Buenos Aires is the home of Tango, both the music and the dance. Attend a recital in a grand venue with top quality food, sit in the back of a smoky club and watch the locals dance or take some lessons yourself and whisk a local señorita onto the dance floor. The choice is yours.</div></td>'
texto+='<td valign="top"><img src="images/tour/tango.jpg"/></td></tr>'
texto+='<tr><td colspan="2"><div style="overflow: hidden; background-color: rgb(201, 208, 216); width: 100%; height: 3px;"/><br/>	</td></tr></table>'
texto+='<table width="100%" border="0"><tr><td valign="top"><img src="images/tour/polo.jpg"/></td>'
texto+='<td valign="top"><div id="conoff" class="subtitulo" style="border: 0px solid rgb(0, 0, 0); background-color: rgb(201, 208, 216); width: 100%; height: 15px;">Polo</div><div id="contoff1" style="margin: 4px; font-size: 11px; display: block;">Polo was first played in Persia around 2000 years ago. The modern game of polo, though formalized and popularized by the British, is derived from India, and now most popularly and successfully played in Argentina, where the quality of the horses and the players are unparalleled. The novice spectator is never disappointed after experiencing the unique atmosphere and spectacle of the game.</div></td></tr>'
texto+='<tr><td colspan="2"><div style="overflow: hidden; background-color: rgb(201, 208, 216); width: 100%; height: 3px;"/><br/>	</td></tr></table>'
texto+='<table width="100%" border="0"><tr><td valign="top"><div id="conoff" class="subtitulo" style="border: 0px solid rgb(0, 0, 0); background-color: rgb(201, 208, 216); width: 100%; height: 15px;">Restaurants</div><div id="contoff1" style="margin: 4px; font-size: 11px; display: block;">Traditionally, even ideologically, Argentines consider meat essential to any meal. The famous parrillas of Buenos Aires are now accompanied by an internatationally eclectic array of restaurants from every corner of the world. Longdrift can use its unique local knowledge to recommend to you anything from the fanciest restaurant to the little place with the wobbly table where all the locals eat the best steak in town.</div></td>'
texto+='<td valign="top"><img src="images/tour/restaurant.jpg"/></td></tr>'
texto+='<tr><td colspan="2"><div style="overflow: hidden; background-color: rgb(201, 208, 216); width: 100%; height: 3px;"/><br/>	</td></tr></table>'
texto+='<table width="100%" border="0"><tr><td valign="top"><img src="images/tour/shopping.jpg"/></td>'
texto+='<td valign="top"><div id="conoff" class="subtitulo" style="border: 0px solid rgb(0, 0, 0); background-color: rgb(201, 208, 216); width: 100%; height: 15px;">Shopping</div><div id="contoff1" style="margin: 4px; font-size: 11px; display: block;">Since 2001, visitors to Argentina have been taking advantage of the more than favourable exhange rate. Bursting at the seams with shops of the highest quality, Buenos Aires is the place to stock up on presents and clothes, particularly leather goods. Why not get measured for a suit on arrival and pick it up on your way home?. Or let Longdrift arrange for the shipping home of any larger items.</div></td></tr>'
texto+='<tr><td colspan="2"><div style="overflow: hidden; background-color: rgb(201, 208, 216); width: 100%; height: 3px;"/><br/>	</td></tr></table>'
texto+='<table width="100%" border="0"><tr><td valign="top"><div id="conoff" class="subtitulo" style="border: 0px solid rgb(0, 0, 0); background-color: rgb(201, 208, 216); width: 100%; height: 15px;">Golf</div><div id="contoff1" style="margin: 4px; font-size: 11px; display: block;">Long sunny days in Buenos Aires may be spent on the outskirts of the city at one of a variety of golf courses that cater for all levels. What better way to start your trip than a round of golf with your fishing companions followed by an hour or two at the nineteenth hole? Longdrift will send you the details and prices of the varying courses - including courses with hotel accomodation and three courses rated among the top 100 courses in the world by Golf Digest - and arrange all the transfers and equipment hire on your behalf.</div></td>'
texto+='<td valign="top"><img src="images/tour/golf.jpg"/></td></tr>'
texto+='<tr><td colspan="2"><div style="overflow: hidden; background-color: rgb(201, 208, 216); width: 100%; height: 3px;"/><br/>	</td></tr></table>'
texto+='</tbody></table>'
}

		else if((itemMenu == 'bsas')&&(idioma=='S')){
			texto='<table width="100%" border="0">'
texto+='<tbody>'
texto+='<br><span class="titulo"> Planeando su viaje - Buenos Aires</span><br>'
texto+='<table width="100%" border="0"><tr>'
texto+='<td valign="top"><div id="contoff1" style="margin: 4px; font-size: 11px; display: block;">Todos los viajes de pesca a  Argentina pueden ser enriquecidos con un par de días extras en  Buenos Aires. Tango, opera, shopping, golf, polo, excelentes restaurantes, buenos vinos, y mucho, mucho mas. Pónganos al tanto de que actividad le interesaría hacer y armaremos un itinerario ideal para usted.</div></td></tr></table>'
/*texto+='<tr><td colspan="2"><div style="overflow: hidden; background-color: rgb(201, 208, 216); width: 100%; height: 3px;"/><br/></td></tr></table>'*/
texto+='<table width="100%" border="0"><tr><td valign="top"><div id="conoff" class="subtitulo" style="border: 0px solid rgb(0, 0, 0); background-color: rgb(201, 208, 216); width: 100%; height: 15px;">Hoteles</div><div id="contoff1" style="margin: 4px; font-size: 11px; display: block;">Sea que elija pasar unos días en Buenos Aires o quedarse en esta ciudad la menor cantidad de tiempo posible, seguramente tendrá que quedarse al menos una noche. Longdrift le ofrece una lista de hoteles, para varios presupuestos, de distinta calidad y ubicación. Mas allá de los grandes hoteles también le podemos recomendar lugares en las afueras de la ciudad con sus propias canchas de golf. Una placentera manera de hacer tiempo hasta que su vuelo hacia los destinos de pesca despegue.</div></td>'
texto+='<td valign="top"><img src="images/tour/hoteles.jpg"/></td></tr>'
texto+='<tr><td colspan="2"><div style="overflow: hidden; background-color: rgb(201, 208, 216); width: 100%; height: 3px;"/><br/>	</td></tr></table>'
texto+='<table width="100%" border="0"><tr><td valign="top"><img src="images/tour/teatrocolon.jpg"/></td><td valign="top"><div id="conoff" class="subtitulo" style="border: 0px solid rgb(0, 0, 0); background-color: rgb(201, 208, 216); width: 100%; height: 15px;">Teatro Colon</div><div id="contoff1" style="margin: 4px; font-size: 11px; display: block;">El famoso teatro Colon impresiona no solo por su belleza sino también por su tamaño.  Por su infraestructura y su acústica es reconocido como uno de los cuatro más famosos teatros en el mundo. Durante sus 100 lardos años de historia, su escenario se ha honrado con la presencia de  Ana Pavlova, Rudolf Nureyev, Enrique Caruso y Luciano Pavarotti. Longrift le informará sobre los espectáculos,  y hará sus reservas.</div></td></tr>'
texto+='<tr><td colspan="2"><div style="overflow: hidden; background-color: rgb(201, 208, 216); width: 100%; height: 3px;"/><br/>	</td></tr></table>'
texto+='<table width="100%" border="0"><tr><td valign="top"><div id="conoff" class="subtitulo" style="border: 0px solid rgb(0, 0, 0); background-color: rgb(201, 208, 216); width: 100%; height: 15px;">Tango</div><div id="contoff1" style="margin: 4px; font-size: 11px; display: block;">Buenos Aires es la cuna del Tango, tanto de la m&uacute;sica como del baile. Disfrute de un show de Tango mientras se deleita saboreando comida de primera calidad, o si&eacute;ntese a observar como bailan los locales o porque no? tome usted mismo alguna clase de Tango. Usted elige.</div></td>'
texto+='<td valign="top"><img src="images/tour/tango.jpg"/></td></tr>'
texto+='<tr><td colspan="2"><div style="overflow: hidden; background-color: rgb(201, 208, 216); width: 100%; height: 3px;"/><br/>	</td></tr></table>'
texto+='<table width="100%" border="0"><tr><td valign="top"><img src="images/tour/polo.jpg"/></td>'
texto+='<td valign="top"><div id="conoff" class="subtitulo" style="border: 0px solid rgb(0, 0, 0); background-color: rgb(201, 208, 216); width: 100%; height: 15px;">Polo</div><div id="contoff1" style="margin: 4px; font-size: 11px; display: block;">El polo fue jugado por primera vez en Persia cerca de 2000 a&ntilde;os atr&aacute;s.  El juego moderno de Polo, tal como lo conocemos hoy d&iacute;a, fue formalizado y popularizado por los brit&aacute;nicos, aunque ahora se juega mas exitosamente en Argentina, donde la calidad de los caballos y de los jugadores no tiene paralelo.  Los nuevos espectadores nunca se han decepcionado al experimentar la atmosfera y el espect&aacute;culo que rodea a este juego.</div></td></tr>'
texto+='<tr><td colspan="2"><div style="overflow: hidden; background-color: rgb(201, 208, 216); width: 100%; height: 3px;"/><br/>	</td></tr></table>'
texto+='<table width="100%" border="0"><tr><td valign="top"><div id="conoff" class="subtitulo" style="border: 0px solid rgb(0, 0, 0); background-color: rgb(201, 208, 216); width: 100%; height: 15px;">Restaurantes</div><div id="contoff1" style="margin: 4px; font-size: 11px; display: block;">Tradicionalmente,  e incluso ideológicamente, los Argentinos consideran la carne esencial en las comidas. Las famosas parrillas de Buenos Aires se entremezclan con eclécticos restaurantes  que ofrecen la más variada cocina internacional. Longdrift se vale de su conocimiento local para recomendar desde los más refinados restaurantes hasta los pequeños y más escondidos lugares famosos entre los locales por la calidad de su carne.</div></td>'
texto+='<td valign="top"><img src="images/tour/restaurant.jpg"/></td></tr>'
texto+='<tr><td colspan="2"><div style="overflow: hidden; background-color: rgb(201, 208, 216); width: 100%; height: 3px;"/><br/>	</td></tr></table>'
texto+='<table width="100%" border="0"><tr><td valign="top"><img src="images/tour/compras.jpg"/></td>'
texto+='<td valign="top"><div id="conoff" class="subtitulo" style="border: 0px solid rgb(0, 0, 0); background-color: rgb(201, 208, 216); width: 100%; height: 15px;">Compras</div><div id="contoff1" style="margin: 4px; font-size: 11px; display: block;">Buenos Aires ha sido llamada frecuentemente la Paris de Sudamérica. Amplias avenidas coronadas por embajadas palaciegas, callejuelas adornadas por negocios de diseñadores reconocidos, plazas rodeadas de cafés, shopping malls, museos y una vida nocturna que solo empieza cuando en otras ciudades del mundo la gente se va a dormir. Todo esto se combina para dar a Buenos Aires esa electricidad única. Longdrift puede indicarle donde le conviene ir o guiarlo por todos aquellos lugares de su interés.</div></td></tr>'
texto+='<tr><td colspan="2"><div style="overflow: hidden; background-color: rgb(201, 208, 216); width: 100%; height: 3px;"/><br/>	</td></tr></table>'
texto+='</tbody></table>'				
		}

		/****************************** END 'bsas' *************************************/

		/****************************** BEGIN 'oneweek' ********************************/
		else if((itemMenu == 'oneweek')&&(idioma=='E')){
							texto='<br><span class="titulo">Planning  your trip - Suggested Itineraries - One week</span><br>';
							texto+='<p>Browse the site, let us know your preferred lodge and the date you wish to come, and fish that water for seven days. Or, why not consider one of our alternative suggestions?	</p>'
							texto+='<p><span class="subtitulo">Dorado fishing <br></span>'
							texto+='Arrive in Buenos Aires - 1 night in hotel, tango show and meal<br>'
							texto+='Travel 1,000km north by plane or overnight bus<br>'
							texto+='4 days Dorado fishing<br>	'
							texto+='Return to Buenos Aires - 2 days tourism	<br>	'
							texto+='Fly home<br></p>'
							texto+='<p><span class="subtitulo">Patagonia <br></span>'
							texto+='Arrive in Buenos Aires<br>'
							texto+='Connecting flight to Bariloche, Patagonia (2 hours)<br>'
							texto+='3 days fishing in Esquel region - rivers and spring creeks<br>'
							texto+='Cross the border into Chile - 1-2hour drive<br>'
							texto+='3 days lake fishing<br>'
							texto+='Fly back from Bariloche to catch flight home from Buenos Aires<br><br><br></p>'
							texto+='<p>For bookings, enquiries or more information please <span class="contactoLink"><strong><a href="http://www.longdrift.com/contactus_en.html" class="contactoLink">CONTACT US</a></strong></span></p>';
  	}
			else if((itemMenu == 'oneweek')&&(idioma=='S')){
							texto='<br><span class="titulo">Planeando su viaje - Itinerarios Sugeridos - Una semana</span><br>';
							texto+='<p>Recorra el sitio, infórmenos que alojamiento escogió, cual son las fechas que cuenta disponibles, y dedíquese a pescar por 7 días. O considere una de nuestras sugerencias.</p>'
							texto+='<p><span class="subtitulo">Pesca del Dorado <br></span>'
							texto+='Arribo a Buenos Aires - una noche de hotel, cena show de tango show<br>'
							texto+='Viaje de 1,000km hacia el norte en avión o en micro<br>'
							texto+='4 días de pesca de Dorado<br>	'
							texto+='Vuelta a  Buenos Aires - 2 días de turismo en la ciudad<br>'
							texto+='Regreso.<br></p>'
							texto+='<p><span class="subtitulo">Patagonia <br></span>'
							texto+='Arribó a Buenos Aires<br>'
							texto+='Vuelo con conexión a Bariloche, Patagonia (2 horas)<br>'
							texto+='3 días de pesca en Esquel<br>'
							texto+='Cruce a Chile 1-2 horas en auto<br>'
							texto+='3 días de pesca en Lagos<br>'
							texto+='Vuelta de Bariloche para tomar el avión a su ciudad desde Buenos Aires<br></p>'
							texto+='<p><span class="subtitulo">Tierra Del Fuego <br></span>'
							texto+='Arribo a Buenos Aires<br>'
							texto+='Vuelo de conexión a  Ushuaia, Tierra Del Fuego (3 horas).<br>'
							texto+='3 días de pesca en  Río Grande ( río abajo)<br>'
							texto+='Días de pesca en Río Grande ( río arriba)<br>'
							texto+='Vuelta de Río Grande para tomar el avión a su ciudad desde Buenos Aires<br>'
							texto+='Vuelta de Bariloche para tomar el avión a su ciudad desde Buenos Aires<br><br><br></p>'
							texto+='<p>Para reservas, consultas o más información, por favor <span class="contactoLink"><strong><a href="http://www.longdrift.com/contactus_sp.html" class="contactoLink">CONT&Aacute;CTENOS</a></strong></span></p>';
  	}

	/****************************** END 'oneweek' ********************************/
	/****************************** BEGIN 'twoweek' ********************************/

	else if((itemMenu == 'twoweek')&&(idioma=='E')){
							texto='<br><span class="titulo">Planning  your trip - Suggested Itineraries - Two week</span><br>';
  	          				texto+='<p>Browse the site, let us know your preferred lodge(s) and the date you wish to come, and fish that water for fourteen days. Or, why not consider one of our alternative suggestions?	</p>'
							texto+='<p><span class="subtitulo">Mendoza fishing and wine tour <br></span>'
							texto+='Arrive in Buenos Aires<br>'
							texto+='Connecting flight to Mendoza (2 hours)<br>'
							texto+='12 days fishing and visiting different wineries.<br>	'
							texto+='1 day in Mendoza	<br>	'
							texto+='Return to Buenos Aires to catch flight home<br><br></p>'
							texto+='<p><span class="subtitulo">Patagonia and Dorado <br></span>'
							texto+='Arrive in Buenos Aires<br>'
							texto+='Connecting flight to San Martin de Los Andes (2 hours)<br>'
							texto+='6 days fishing in Patagonia<br>'
							texto+='Return to Buenos Aires<br>'
							texto+='1 day relaxing in Buenos Aires (golf, shopping, etc)<br>'
							texto+='Travel 1,000km north by plane or overnight bus<br>'
							texto+='6 days Dorado fishing<br>	'
							texto+='Return to Buenos Aires to catch flight home <br><br></p>	'
							texto+='<p><span class="subtitulo">Tierra del Fuego<br></span>'
							texto+='Arrive in Buenos Aires<br>'
							texto+='2 days tourism in Buenos Aires<br>'
							texto+='Fly down to Ushuaia, Tierra del Fuego (3 hours)<br>'
							texto+='10 days fishing	<br>'
							texto+='2 night in Ushuaia (most southerly city in the world<br>'
							texto+='Return to Buenos Aires to catch flight home<br><br><br></p>'
							texto+='<p>For bookings, enquiries or more information please <span class="contactoLink"><strong><a href="http://www.longdrift.com/contactus_en.html" class="contactoLink">CONTACT US</a></strong></span><br><br></p>';
  	}
	else if((itemMenu == 'twoweek')&&(idioma=='S')){
							texto='<br><span class="titulo">Planeando su viaje - Itinerarios Sugeridos - Dos semanas</span><br>';
  	          				texto+='<p>Recorra el sitio, infórmenos que alojamiento/s escogió, cual son las fechas que cuenta disponibles, y dedíquese a pescar por 14 días. O considere una de nuestras sugerencias.</p>'
							texto+='<p><span class="subtitulo">Mendoza pesca y tour de vinos<br></span>'
							texto+='Arribo a Buenos Aires<br>'
							texto+='Vuelo de conexión a  Mendoza (2 horas)<br>'
							texto+='12 días de pesca y visitas a diferentes bodegas<br>	'
							texto+='1 día en Mendoza<br>	'
							texto+='Vuelta a Buenos Aires para tomar el vuelo a su ciudad de origen.<br><br></p>'
							texto+='<p><span class="subtitulo">Patagonia y Dorado <br></span>'
							texto+='Arribo a Buenos Aires<br>'
							texto+='Vuelo de conexión a  San Martín de Los Andes (2 horas)<br>'
							texto+='6 días de pesca en Patagonia<br>'
							texto+='Vuelta a Buenos Aires<br>'
							texto+='1 día de relajación en Buenos Aires (golf, shopping, etc.)<br>'
							texto+='Viaje de 1,000km al norte en avión o micro<br>'
							texto+='6 días pescando Dorado <br>	'
							texto+='Vuelta a Buenos Aires para tomar el vuelo a su ciudad de origen<br><br></p>	'
							texto+='<p><span class="subtitulo">Tierra del Fuego<br></span>'
							texto+='Arribo a Buenos Aires<br>'
							texto+='2 días de turismo en Buenos Aires<br>'
							texto+='Vuelo a Ushuaia, Tierra del Fuego (3 horas)<br>'
							texto+='10 días de pesca<br>'
							texto+='2 días en Ushuaia (la ciudad mas austral del mundo)<br>'
							texto+='Vuelta a Buenos Aires para tomar el vuelo a su ciudad de origen<br><br><br></p>'
							texto+='<p>Para reservas, consultas o más información, por favor <span class="contactoLink"><strong><a href="http://www.longdrift.com/contactus_sp.html" class="contactoLink">CONT&Aacute;CTENOS</a></strong></span><br><br></p>';
  	}

	/****************************** End 'twoweek' ********************************/
	/****************************** BEGIN 'threeweek' ********************************/

	else if((itemMenu == 'threeweek')&&(idioma=='E')){
							texto='<br><span class="titulo">Planning  your trip - Suggested Itineraries - Three week</span><br>';
  	          				texto+='<p>Browse the site, let us know your preferred lodge(s) and the date you wish to come, and fish that water for three weeks. Or, why not consider one of our alternative suggestions?	</p>'
							texto+='<p><span class="subtitulo">Patagonia, Dorado and Tierra del Fuego	<br></span>'
							texto+='Arrive in Buenos Aires<br />'
							texto+='Connecting flight to Esquel, Patagonia (2 hours)<br />'
							texto+='7 days fishing in Patagonia<br />	'
							texto+='Fly from Bariloche to Ushuaia, Tierra del Fuego (2 hours)<br />	'
							texto+='7 days fishing in Tierra del Fuego<br />'
							texto+='Return to Buenos Aires<br />	'
							texto+='2 days relaxing in Buenos Aires	<br />	'
							texto+='Travel 1,000km north by plane or overnight bus<br />'
							texto+='5 days Dorado fishing<br />	'
							texto+='Return to Buenos Aires to catch flight home	<br /></p>	'
							texto+='<p><span class="subtitulo">Patagonia and Tierra del Fuego <br /></span>'
							texto+='Arrive in Buenos Aires<br />'
							texto+='2 days tourism in Buenos Aires<br />'
							texto+='Fly to Esquel, Patagonia (2 hours)<br>'
							texto+='Fish 4 days each in three different lodges experiencing different waters.<br>'
							texto+='Fly from Bariloche to Ushuauia, Tierra del Fuego<br />'
							texto+='1 week fishing the Rio Grande<br />'
							texto+='Return to Buenos Aires to catch flight home<br /></p>	'
							texto+='<p><span class="subtitulo">Mendoza and Patagonia	<br></span>'
							texto+='Arrive in Buenos Aires<br>'
							texto+='Fly to Mendoza <br>'
							texto+='Fish 10 days in two different lodges<br>'
							texto+='Travel south through the beautiful lake district	<br>'
							texto+='Fish 7 days in Patagonia<br>'
							texto+='Return to Buenos aires<br>'
							texto+='Two days tourism	<br>'
							texto+='Fly home	<br><br><br></p>'
							texto+='<p>For bookings, enquiries or more information please <span class="contactoLink"><strong><a href="http://www.longdrift.com/contactus_en.html" class="contactoLink">CONTACT US</a></strong></span> <br><br></p>';
  	}
	else if((itemMenu == 'threeweek')&&(idioma=='S')){
							texto='<br><span class="titulo">Planeando su viaje - Itinerarios Sugeridos - Tres semanas</span><br>';
  	          				texto+='<p>Recorra el sitio, infórmenos que alojamiento escogió, cual son las fechas que cuenta disponibles, y dedíquese a pescar por3 semanas. O considere una de nuestras sugerencias.</p>'
							texto+='<p><span class="subtitulo">Patagonia, Dorado y Tierra del Fuego	<br></span>'
							texto+='Arribo a Buenos Aires<br>'
							texto+='Vuelo de conexión a  Esquel, Patagonia (2 horas)<br>'
							texto+='7 días de pesca en Patagonia<br>'
							texto+='Vuelo de Bariloche a Ushuaia, Tierra del Fuego (2 horas)<br>'
							texto+='7 días de pesca en Tierra del Fuego<br>'
							texto+='Vuelta a Buenos Aires<br>'
							texto+='2 días de relax en Buenos Aires<br>	'
							texto+='Viaje de 1,000km al norte en avión o micro<br>'
							texto+='5 días de pesca de Dorado<br>	'
							texto+='Vuelta a Buenos Aires para tomar el vuelo de regreso a su ciudad de origen<br></p>	'
							texto+='<p><span class="subtitulo">Patagonia y Tierra del Fuego <br></span>'
							texto+='Arribo a Buenos Aires<br>'
							texto+='2 días de turismo en Buenos Aires<br>'
							texto+='Vuelo a Esquel, Patagonia (2 horas)<br>'
							texto+='Fish 4 days each in three different lodges experiencing different waters<br>'
							texto+='Vuelo de Bariloche a Ushuaia, Tierra del Fuego<br>'
							texto+='1 semana de pesca en Río Grande<br>'
							texto+='Vuelta a Buenos Aires para tomar el vuelo de regreso a su ciudad de origen<br></p>	'
							texto+='<p><span class="subtitulo">Mendoza y Patagonia	<br></span>'
							texto+='Arribo a  Buenos Aires<br>'
							texto+='Vuelo a Mendoza <br>'
							texto+='Pesca por 10 días en dos hospedajes diferentes<br>'
							texto+='Viaje al sur por el distrito de los lagos<br>'
							texto+='Pesca por 7 días en Patagonia<br>'
							texto+='Vuelta a Buenos Aires<br>'
							texto+='Dos días de turismo<br>'
							texto+='Vuelo de regreso<br><br><br></p>'
							texto+='<p>Para reservas, consultas o más información, por favor <span class="contactoLink"><strong><a href="http://www.longdrift.com/contactus_sp.html" class="contactoLink">CONT&Aacute;CTENOS</a></strong></span> <br><br></p>';
  	}

	/****************************** END 'threeweek' ********************************/
	/****************************** BEGIN 'onemonth' ********************************/
	else if(itemMenu == 'onemonth'){
							texto='<br><span class="titulo">Planning  your trip - Suggested Itineraries - One month or more</span><br>';
  	          				texto+='<p>If you are planning a long fishing break in Argentina please feel free to contact us.</p>'
							texto+='<p>We have experience with fishermen who have spent the entire fishing season moving around the country, camping and fishing previously unfished waters.</p>'
							texto+='<p>For advice on: budget, car hire, geography, possible dangers and annoyances, and general top tips… please drop us a line<br><br><br></p>'
							texto+='<p>For bookings, enquiries or more information please <span class="contactoLink"><strong><a href="http://www.longdrift.com/contactus_en.html" class="contactoLink">CONTACT US</a></strong></span> <br><br></p>';
  	}
	else if(itemMenu == 'onemonth'){
							texto='<br><span class="titulo">Planeando su viaje - Itinerarios Sugeridos - Un mes o más</span><br>';
  	          				texto+='<p>Si está planeando un largo descanso en  Argentina sientase libre de contactarnos.</p>'
							texto+='<p>Tenemos experiencia con pezcadores que han pasado la temporada entera de pezca visitando varios lugares de nuestro país.</p>'
							texto+='<p>Para sugerencias sobre:alquiler de autos, geografía, alquiler de equipos etc… contactenos.<br><br><br></p>'
							texto+='<p>Para reservas, consultas o más información, por favor <span class="contactoLink"><strong><a href="http://www.longdrift.com/contactus_sp.html" class="contactoLink">CONT&Aacute;CTENOS</a></strong></span> <br><br></p>';
  	}
  /****************************** END 'onemonth' ********************************/

	else if((itemMenu == 'whatyouneed')&&(idioma=='E')){
							texto='<br><span class="titulo">What you need</span><br>';
							texto+='<p>Before your trip Longdrift will send you a list of recommended general items to bring and specific equipment needs (such as tackle) for the area you are going to fish.</p>';
  	}
	else if((itemMenu == 'whatyouneed')&&(idioma=='S')){
							texto='<br><span class="titulo">Que necesita</span><br>';
							texto+='<p>Antes de su viaje, Longdrift le enviara una lista con la recomendaci&oacute;n de todos los &Iacute;tems que le aconsejamos traer así como tambi&eacute;n el equipo necesario (such as tackle) para el &aacute;rea en la que decidi&oacute; pescar.</p>';
  	}

		
        document.getElementById('contenedor2').scrollTop='0';
       /*alert(document.getElementById('contenedor2').scrollTop);*/                
        document.getElementById('contenedor2').innerHTML = texto;/*original*/

}

function swapImagesMenuP(image){

             
        var image0,image1,image2,image3,image4,image5,image6,image7,image8,image9,image10;
        image0 = 'images/'+idioma+'/whychooselongdrift.gif';
        image1 = 'images/'+idioma+'/buenaire.gif';
        image2 = 'images/'+idioma+'/suggesteditineraries.gif';
        image3 = 'images/'+idioma+'/oneweek.gif';
        image4 = 'images/'+idioma+'/twoweek.gif';
        image5 = 'images/'+idioma+'/threeweek.gif';
        image6 = 'images/'+idioma+'/onemonth.gif';
        image7 = 'images/'+idioma+'/whatyouneed.gif';
        image8 = 'images/'+idioma+'/artic_01.gif';
        image9 = 'images/'+idioma+'/recomenbooks_01.gif';
        image10 = 'images/'+idioma+'/quotes_01.gif';

        if(image == 'whychooselongdrift.')  			image0='images/'+idioma+'/whychooselongdriftVisited.gif';
        if(image == 'buenaire.')            			image1='images/'+idioma+'/buenaireVisited.gif';
        if(image == 'suggesteditineraries.')			image2='images/'+idioma+'/suggesteditinerariesVisited.gif';
        if(image == 'suggesteditineraries.oneweek.') 		image3='images/'+idioma+'/oneweekVisited.gif';
        if(image == 'suggesteditineraries.twoweek.') 		image4='images/'+idioma+'/twoweekVisited.gif';
        if(image == 'suggesteditineraries.threeweek.') 		image5='images/'+idioma+'/threeweekVisited.gif';
        if(image == 'suggesteditineraries.onemonthormore.')	image6='images/'+idioma+'/onemonthVisited.gif';
        if(image == 'whatyouneed.') 				image7='images/'+idioma+'/whatyouneedVisited.gif';
        if(image == 'artic_01.')				image8='images/'+idioma+'/artic_02.gif';
        if(image == 'recomenbooks_01.')				image9='images/'+idioma+'/recomenbooks_02.gif';
        if(image == 'quotes_01.')				image10='images/'+idioma+'/quotes_02.gif';

        if(stateP == "desplegado")
           cambiarImagenesMenuHP('imagen0',image0,'imagen1',image1,'imagen2',image2,'imagen3',image3,'imagen4',image4,'imagen5',image5,'imagen6',image6,'imagen7',image7);
        if(stateP == "plegado")
           cambiarImagenesMenuHP('imagen0',image0,'imagen1',image1,'imagen2',image2,'imagen3',image7,null,null);
}

/*--------------------------------------------------------------------------------------------*/

function nuevoAjax(){
	var xmlhttp=false;
 	try {
 		xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
 	} catch (e) {
 		try {
 			xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
 		} catch (E) {
 			xmlhttp = false;
 		}
  	}

	if (!xmlhttp && typeof XMLHttpRequest!='undefined') {
 		xmlhttp = new XMLHttpRequest();
	}
	return xmlhttp;
}


function cargarContenido(parametro){
		var contenedor,aux,nombre;
		contenedor = document.getElementById('contenedor');
		ajax=nuevoAjax();
		nombre=contentArr.join(" - ");
		//funciones para que vuelva al top
		document.getElementById('contenedor').scrollTop='0';		

		if(nombre == "")
		{
			ajax.open("GET", "e_inc/selContenido.php?"+"idPage=Argentina&tipo="+document.getElementById(parametro).value+"&idioma="+idioma+"&nivel="+nivel,true);}
		else
		   ajax.open("GET", "e_inc/selContenido.php?"+"idPage="+nombre+"&tipo="+document.getElementById(parametro).value+"&idioma="+idioma+"&nivel="+nivel,true);

		ajax.onreadystatechange = function (){
			if (ajax.readyState == 4) {
			   aux = "";
			   aux = ajax.responseText;
			   contenedor.innerHTML = aux;
			   }
		}
		ajax.send(null);
}

function cargarcontenidofinal(parametro){
    

	var id = parametro.split(",")[0];
	var tipo = parametro.split(",")[1];
	var contenedor,aux;
		contenedor = document.getElementById('contenedor');

		document.getElementById('contenedor').scrollTop='0';	
		
		ajax=nuevoAjax();
		ajax.open("GET", "e_inc/SelContenidoFinal.php?"+"&"+"idPage="+id+"&tipo="+tipo+"&idioma="+idioma,true);
		ajax.onreadystatechange = function (){
			if (ajax.readyState == 4) {
			   aux = "";
			   aux = ajax.responseText;
			   contenedor.innerHTML = aux;
			   }
		}
		ajax.send(null);
}

function mostrarOcultarDiv(mydiv, mydiv2){
  if(document.getElementById(mydiv).style.display == 'none'){
	document.getElementById(mydiv).style.display = 'block';            
        document.getElementById(mydiv2).style.display = 'none';
  }
  else{
	document.getElementById(mydiv).style.display = 'none';             
        document.getElementById(mydiv2).style.display = 'block';
  }
}

function ventanaSecundaria (URL){
   window.open(URL,"ventana1")

}

function openPopup(url){
    window.open(url, "_blank", "top=400, left=700, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=no, copyhistory=no, width=600, height=480");
} 

function openPopup2(url){
    window.open(url, "_blank", "top=200, left=200, location=no, directories=no, status=no, menubar=no, scrollbars=yes, resizable=no, copyhistory=no, width=600, height=580");
} 
function openPopup3(url){
    window.open(url, "_blank", "top=400, left=700, location=no, directories=no, status=no, menubar=no, scrollbars=yes, resizable=no, copyhistory=no, width=800, height=440");
} 