// JavaScript Document

function abrirAviso(URL) {
	window.open(URL,"Aviso","width=620,height=250,scrollbars=auto,resizable=no, menubar=no,status=no,location=0");
}

function abrirMapa(URL) {
	window.open(URL,"Mapa","width=380,height=320,scrollbars=auto,resizable=no, menubar=no,status=no,location=0");
}

function abrirVivero(URL) {
	window.open(URL,"Vivero","width=315,height=475,scrollbars=auto,resizable=no, menubar=no,status=no,location=0");
}

function cerrarVentana() {
	window.close();
}