// JavaScript Document
function redimensionar(w,h)
{
var LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
var TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
window.resizeTo(w,h);
window.moveTo(LeftPosition,TopPosition);
}

function cargar_video(video)
{
	// alert("VIDEO DE CARGA:"+video);
	var pelicula=getFlashMovieObject("videoflash");			
	pelicula.SetVariable("datos",video);
}
	
function ver_video(video)
{
	var alto = document.body.offsetHeight;
	var altopx =alto+"px";
	document.getElementById("capavideo").style.height =altopx;		
	document.getElementById("capavideo").style.visibility = "visible";
	cargar_video(video);
}
	
function ocultar_video()
{  
	document.getElementById("capavideo").style.visibility = "hidden";
	//window.location.href = document.url;
}

function abrirLegal()
{
	var win = null;
	LeftPosition = (screen.width) ? (screen.width-250)/2 : 0;
	TopPosition = (screen.height) ? (screen.height-400)/2 : 0;
	estilo ='height='+600+',width='+860+',top='+TopPosition+',left='+LeftPosition+',scrollbars=yes,resizable';
	pagina='legal.php';
	//alert(imagen);
	win = window.open(pagina,"legal",estilo);
} 

function mostrarFechaActual()
{
	var mydate=new Date();
	var year=mydate.getYear();
	if (year < 1000)
		year+=1900;
	var day=mydate.getDay();
	var month=mydate.getMonth();
	var daym=mydate.getDate();
	if (daym<10)
		daym="0"+daym;

	var dayarray=new Array("Domingo","Lunes","Martes","Miercoles","Jueves","Viernes","Sábado");
	var montharray=new Array("Enero","Febrero","Marzo","Abril","Mayo","Junio","Julio","Agosto","Septiembre","Octubre","Noviembre","Diciembre");
	document.write('<p id="fecha"><span>'+ dayarray[day] + ',</span> ' + daym + ' de ' + montharray[month] + ' de ' + year + '</p>');
}