// JavaScript Document
var oVideo = new function(){
	
	this.loadVideo = function(obj,idVideo,width,height){
		$('contVideo').style.display = 'none';
		$('loaderVideo').style.display = 'block';

		$('loaderVideo').style.marginLeft = (Math.round(width-60-$('loaderVideo').offsetWidth)/2)+'px';
		$('loaderVideo').style.marginTop = (Math.round(height-10-$('loaderVideo').offsetHeight)/2)+'px';		
		
		$('contenedorVideo').style.width = (width+10)+'px';
		$('contVideo').parentNode.style.height = (height+10)+'px';		
		$('contenedorVideo').style.display = 'block';
		
		oZoom.zoomElement(obj, $('contenedorVideo'), cuandoTerminoMostrar, cuandoTerminoOcultar, false);
		req.pedir(archivo,'idVideo' + SEP_IGUAL + idVideo + SEP_AND);
	}
	this.ocultar = function(){
		$('contVideo').innerHTML = '';
		oZoom.zoomElementOut();	
		
	}
	var cuandoTerminoMostrar = function(){
		
		Blocker.show();	
	}
	var cuandoTerminoOcultar = function(){
		Blocker.hide();	
	}
	var listener = function(){
		var d = req.respuestaXML;
		if(d){
			$('contVideo').innerHTML = d.firstChild.data;
			$('loaderVideo').style.display = 'none';			
			$('contVideo').style.display = 'block';
		}
		else alert(req.respuestaHTML);
	}
	var archivo = DIR_ROOT + 'requests/video.php';

	var oZoom = new ZoomElement();
	var req = new Request(listener);
}