function OpenWindow(url,name,resizable,options,dest,width,height){
	var ruta=url;
	var nombre=name;
	var tamanyo=resizable;
	var opciones=options;
	var destacados=dest;
	var alto=height;
	var ancho=width;
	var opciones_total="";
	
	if (tamanyo!=''||opciones!=''||alto!=''||ancho!=''){
		opciones_total+="'";
	}
	if (tamanyo!=""){
		opciones_total+="resizable,scrollbars";
	}
	if (opciones!=""){
		if (opciones_total==""){
			opciones_total+="scrollbars,menubar,location,directories,status,toolbar,top=50,left=50";
		}else{
			opciones_total+=",scrollbars,menubar,location,directories,status,toolbar,top=50,left=50";
		}
	}
	if (alto!=""){
		if (opciones_total==""){
			opciones_total+="width="+ancho;
		}else{
			opciones_total+=",width="+ancho;
		}
	}
	if (ancho!=""){
		if (opciones_total==""){
			opciones_total+="height="+alto;
		}else{
			opciones_total+=",height="+alto;
		}
	}
	if (tamanyo!=''||opciones!=''||alto!=''||ancho!=''){
		opciones_total+="'";
	}
	var popup = window.open(ruta,'nombre', eval(opciones_total));
	
}

function ventanaNueva(url,name){
	var direccion = url;
	window.open(direccion, name, 'resizable,scrollbars,menubar,location,directories,status,toolbar,top=100,left=200, width=600, height=600');
}

function validar_entrada(){
        if (document.formulario.usuario.value=='' || document.formulario.password.value==''){
			alert("Introduzca nombre de usuario y contrase"+decodeURI('%c3%b1')+"a."); 
		}else{
			document.formulario.submit();
		}
}

function GoTo(region,cid,iid){

	var chain = region+cid+iid;
	var element = document[chain][chain];
	var nIndex = element.selectedIndex;
	var sUrl = element[nIndex].value;
	var opciones = "";
	var titulo = "";
	var myArray = sUrl.split('&&');
	
	//0="url"       select="../URL"/>   
	//1="pagina"    select="../PAGINA"/>
	//2="resizable" select="../MODIFICABLE"/>
	//3="opciones"  select="../OPCIONES"/>
	//4="destacado" select="../DESTACADO"/>
	//5="alto"      select="../ALTO"/>
	//6="ancho"     select="../ANCHO"/>
	//7="nombre"    select="../DESCRIPCION"/>

	sUrl = myArray[0];
	
	//document[chain][chain].selectedIndex = 0; 
	
	if(myArray[1]=='SI'){					
		if(myArray[2]=='SI') opciones+="resizable=yes,";
		if(myArray[3]=='SI') opciones+="toolbar=yes,";
		if(myArray[5]!='') opciones=opciones+"height="+myArray[5]+ ",";
		if(myArray[6]!='') opciones=opciones+"width="+myArray[6]+ ",";
		if(opciones!='') opciones="'"+opciones.substring(0,opciones.lastIndexOf(','))+"'";
		//if(myArray[7]!='') titulo="'"+myArray[7]+"'";
		var w=window.open(sUrl,'',opciones);
	}else{
		location.href = sUrl;
	}
}

function borrar_cookie() {
	 var date = new Date(); 
	 document.cookie = 'thedomain=0; expires=' + date.toGMTString() + '; path=/'; 
	 document.cookie = 's=0; expires=' + date.toGMTString() + '; path=/'; 
}