// JavaScript Document

function abrirVideo(theURL) { 
	
	//Abre la ventana
	var ven = window.open(theURL,'video','status=yes,scrollbars=no,resizable=yes,width=640,height=480');
	
	// Centra la ventana
	var top = (screen.height - ven.document.body.clientHeight)/2;
	var left = (screen.width - ven.document.body.clientWidth)/2;
	ven.moveTo(left,top);
	ven.focus();
}


var reproduciendo = '';
function getReproduciendo()
{
	return reproduciendo;		
}
function setReproduciendo(id)
{
	reproduciendo = id;	
}


function abrirFoto(cual) {
	
	//Abre la ventana
	var ven = window.open('foto.php?f='+cual, 'foto', 'status=yes,scrollbars=no,resizable=yes,width=900,height=650');
	
	// Centra la ventana
	var top = (screen.height - ven.document.body.clientHeight)/2;
	var left = (screen.width - ven.document.body.clientWidth)/2;
	ven.moveTo(left,top);
	ven.focus();
	
	//return false;

}


