// JavaScript Document

function ventanaAbrir(destino,titulo,ancho,alto,scrolleo){
	sw=screen.width; 
	sh=screen.height;
	window.open(destino, titulo,'toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars='+scrolleo+', resizable=no, width='+ancho+', height='+alto+', top='+(sh-alto)/2+',left='+(sw-ancho)/2+'');
}
function verPedido(){
	ventanaAbrir("../cesta/cesta.aspx", 'ZIV', 500, 400, 'NO');
	var ancho=500;
	var alto=400;
	//window.open('../cesta/cesta.aspx', 'ZIV', toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars='+scrolleo+', resizable=no, width='+ancho+', height='+alto+', top='+(sh-alto)/2+',left='+(sw-ancho)/2+'');
}

function contactar(){
	var correo = "mailto:?subject=[CONSULTA ZIV]";
	this.location.href=correo;
}



function verAvisoLegal(){
	//ventanaAbrir("../avisos/avisolegal.aspx", 'ZIV', 500, 400, 'NO'");
	ventanaAbrir("../avisos/avisolegal.aspx", 'ZIV', 520, 400, 'YES');
}

function verMapaWeb(){
	//this.location.href="../mapaWeb/mapaWeb.aspx";
}

function accesoIntranet(){
	//alert("acceso intranet");
	//ventanaAbrir("../intranet/lisdescargas.aspx", 'ZIV', 500, 650, 'NO'");
	ventanaAbrir("../intranet/lisdescargas.aspx", 'ZIV', 760, 450, 'YES');
}

function cambiarIdioma(idioma){
	this.location.href="../../"+idioma+"/home/home.aspx";
}