function nreserva() {
	touring = document.location.href.indexOf('touringclub.es')!=-1 || document.location.href.indexOf('touringclubp.com')!=-1;
  	if (document.forms['parametro'].elements['usuario'].value=='') { 
  		if(touring)
  			alert('Debe introducir nombre de usuario y contraseña');
  		else
  			alert('Debe introducir un código de usuario'); 
  		}
  	else {
  		document.forms['formLogin'].elements['user'].value = document.forms['parametro'].elements['usuario'].value;
  		document.forms['formLogin'].elements['pass'].value = document.forms['parametro'].elements['password'].value;
  		document.forms['formLogin'].submit();
   	}
}

function login(ideSes) {
	
	if(parent.document.forms['frmIndex']){
		parent.document.forms['frmIndex'].elements['ideSes'].value = ideSes
    	parent.document.forms['frmIndex'].submit();
	}else{
		parent.parent.document.forms['frmIndex'].elements['ideSes'].value = ideSes
    	parent.parent.document.forms['frmIndex'].submit();
	}

}

function ventana_solicitudalta(contenido) {  vent_solicitudalta=window.open(contenido,"SolicitudAlta","toolbar=no,scrollbars=NO,resizable=no,width=400,height=380"); }

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

function MyAddress(IP) {
  document.aceptar.ipcliente.value = IP;
}

function pop_ofertas(oferta){
	var ofe =  "publicidad/" + oferta;
	window.open(ofe,'','width=600, height=600');
}

function enviaMail(){
	usuario 	=	document.forms['parametro'].elements['usuario'];
	mail 		= 	document.forms['parametro'].elements['email'];
	touring = document.location.href.indexOf('touringclub.es')!=-1 || document.location.href.indexOf('touringclubp.com')!=-1;	
	
    if (usuario.value=='') {
    	alert('Debe introducir su codigo de usuario');
    	usuario.focus();
     	return;
    }
	
	if(valida_email(mail)){
		
		var vParametros = 	"usuario="	+usuario.value.toUpperCase()+
							"&email="	+mail.value+
							"&idioma=ESP"+
							"&codemp=" +(touring?"IBT":"TVP");	 	
		ajaxSendRequest("POST", "../../jsp/inicio/enviarMail.jsp", vParametros, true, returnEnviaMailContr, false, true, 'UTF-8');
		
	}else{return;}

}

function returnEnviaMailContr(){
	errorAjax		=	ajaxGetParameter("parametroError");
	MensajeAjax		=	ajaxGetParameter("parametroMsgError");
	codErrAjax		=	ajaxGetParameter("parametroCodErr");
	mail 		= 	document.forms['parametro'].elements['email'];
	usuario 	=	document.forms['parametro'].elements['usuario'];
	
	if(errorAjax!=null && errorAjax != "null"){
		mail.focus();
		mail.select();
		alert(errorAjax);
		
	}else if(MensajeAjax!=null && MensajeAjax!="null"){
		if(codErrAjax=='SQL-10173'){
			mail.focus();
			mail.select();
		} else{
			usuario.focus();
			usuario.select();
		}
		alert(MensajeAjax);
	} else
		alert("Le ha sido enviado su contraseña a la dirección de correo.");

}

function MM_swapImgRestore() { //v3.0
  var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
}

function MM_preloadImages() { //v3.0
  var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
    var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
    if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}

function MM_findObj(n, d) { //v4.01
  var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
    d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
  if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
  for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
  if(!x && d.getElementById) x=d.getElementById(n); return x;
}

function MM_swapImage() { //v3.0
  var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
   if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
}

//verifica si se ha pulsado la tecla ENTER
function enterKey(evt) {
	var evt = (evt) ? evt : event;
	var charCode = (evt.which) ? evt.which : evt.keyCode;
	if (charCode == 13) {
		nreserva();
	}
} 
