// JavaScript Document
function fecha_actual(){
var fecha=new Date();
var diames=fecha.getDate();
var diasemana=fecha.getDay();
var mes=fecha.getMonth() +1 ;
var ano=fecha.getFullYear();

var textosemana = new Array (7);
  textosemana[0]="Domingo";
  textosemana[1]="Lunes";
  textosemana[2]="Martes";
  textosemana[3]="Mi&eacute;rcoles";
  textosemana[4]="Jueves";
  textosemana[5]="Viernes";
  textosemana[6]="S&aacute;bado";

var textomes = new Array (12);
  textomes[1]="Enero";
  textomes[2]="Febrero";
  textomes[3]="Marzo";
  textomes[4]="Abril";
  textomes[5]="Mayo";
  textomes[6]="Junio";
  textomes[7]="Julio";
  textomes[8]="Agosto";
  textomes[9]="Septiembre";
  textomes[10]="Octubre";
  textomes[11]="Noviembre";
  textomes[12]="Diciembre";
  
  return f=textosemana[diasemana] +", "+ diames + " de " + textomes[mes] +" del " + ano ;
}



function popup(url, nombreventana, caracteristicas){
	if(!caracteristicas) caracteristicas="width=300,height=400,scrollbars=no";
	window.open(url,nombreventana,caracteristicas);	
}

function popup_div(url,criterio){
	var divguia=document.getElementById('VideoIdP');
	divguia.style.display="block";
	irpageajax(url,criterio,'VideoIdP');
}


