 function fecha(){
	dows = new Array("Domingo","Lunes","Martes","Miércoles","Jueves","Viernes","Sábado");
	months = new Array("January","February","March","April","May","June","July",
	"August","September","October","November","December");
	now = new Date();
	dow = now.getDay();
	d = now.getDate();
	m = now.getMonth();
	h = now.getTime();
	y = now.getFullYear();
	document.write(d+" "+months[m]+" "+y);	
}


 function abrirVentana(que,w,h,param){
 	var offset = 20;
	var tam = 20;
	var posx=(screen.width-w)/2+offset;
	var posy=(screen.height-h)/2+offset;
	var ventana=open(que,'',param);
	ventana.resizeTo(w,h+tam);
	ventana.moveTo(posx,posy);
	ventana.focus();
}

function abrirMapaWeb() {
  abrirVentana("mapaweb.htm", 500, 700, 'top=100,left=200,screenX=200,screenY=200,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=yes');
}

function abrirAvisoLegal() {
  abrirVentana("avisolegal.htm", 600, 400, 'top=100,left=200,screenX=200,screenY=200,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=yes');
}

function abrirContacto() {
  abrirVentana("contacto.htm", 380, 385, 'top=100,left=200,screenX=200,screenY=200,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=yes');
}

function abrirCreditos() {
  abrirVentana("creditos.htm", 480, 330, 'top=100,left=200,screenX=200,screenY=200,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=yes');
}

function abrirVideo(pagina) {
  abrirVentana(pagina, 360, 365, 'top=100,left=200,screenX=200,screenY=200,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=no');
}

function abrirAudio(pagina) {
  abrirVentana(pagina, 230, 95, 'top=100,left=200,screenX=200,screenY=200,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=no');
}

function abrirImagen(pagina) {
  abrirVentana(pagina, 610, 465, 'top=100,left=200,screenX=200,screenY=200,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=no');
}

function imprSelec(nombre)
{
  var ficha = document.getElementById(nombre);
  var ventimp = window.open('', 'popimpr');
  ventimp.document.write( ''+
  	'<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">'+
	'<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="es" lang="es">'+
	'<head>'+
	'<meta http-equiv="Content-Type" content="text/html"; charset="iso-8859-1" />'+
	'<style type="text/css" media="print">'+
	'@import url(css/css.css);'+
	'</style>'+
	'</head>'+
	'<img src="img/home/ho00.jpg" width="205" height="115" alt="" />'
  
  
   );
  ventimp.document.write( ficha.innerHTML );
  ventimp.document.close();
  ventimp.print( );
  ventimp.close();
} 