function abrir(pagina,ancho,alto) {
var vleft = (screen.width-ancho)/2;
var vtop = (screen.height-alto)/2;
open(pagina,"","toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=no,scrollbars=no,width="+ancho+",height="+alto+",top="+vtop+",left="+vleft);
}

function vacio(str)
{
  for (i=0; (str.charAt(i) ==" ") && (i<str.length); i++);
  for (f=str.length-1; (str.charAt(f) ==" ") && (f>0); f--);
  if (i>f) str="";
  else str=str.substring(i,f+1);
  if (str.length == 0) return true;
  else return false;
}

function como_llegar(origen,destino)
{
  var url = "http://maps.google.es/maps?f=d&hl=es&saddr=" +  origen + "&daddr=" + destino + "&om=1";
  window.open(url,'Alanta');
}


function llegar_ainsa(f)
{
  if (vacio(f.origen.value)) alert("Debe introducir el punto de origen")
  else como_llegar(f.origen.value,"avenida ordesa 15, ainsa, huesca")
}


function llegar_laera(f)
{
  if (vacio(f.origen.value)) alert("Debe introducir el punto de origen");
  else como_llegar(f.origen.value,"calle bellavista, laspuņa, huesca");
}

function AbrirLegal() {
ancho="530"
alto="365"
desplazamiento="no"
var vleft = (screen.width-ancho-8)/2;
var vtop = (screen.height-alto)/2;
open("http://www.alanta.es/fichas/legal/index.htm","","toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=no,scrollbars="+desplazamiento+",width="+ancho+",height="+alto+",top="+vtop+",left="+vleft);
}

