var ancho=10;
function mostrarVideo(pelicula, nombrePeli)
{

	anchoFlash=596;

	alturaNavegador =getbrowserheight();

	if (document.body.scrollHeight<alturaNavegador)
	  alturaTotal=alturaNavegador;
	else
	  alturaTotal=document.body.scrollHeight;
	////////
	
	

	if (alturaTotal<screen.Height)
	  alturaTotal = screen.Height;

	//var pelicula = new FlashObject("/multimedia_contenidos//flvplayer.swf?src=/multimedia_contenidos/348_28.video_gen.flv&autoplay=1&asp=0&hidecontrols=0", "movie", "481", "385", "8", "#cccccc");

	objetoFlash='  <div style="width:596px; height:60px;position:relative;background: url(/imagenes/fondoVideoUp.gif);"><div style="width:350px;height:25px;position:absolute;top:16px;left:80px;text-align:left;color:#F00; font-family:Verdana;">'+nombrePeli+'</div><div style="width:25px;height:25px;position:absolute;top:15px;right:32px;;text-align:right;"><a href="javascript:cerrarVideo();"><img src="/imagenes/cerrar.gif" style="padding-top:5px;padding-left:5px; margin:0; border:0;"></a></div></div><div class="cont-video" id="flashcontent"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="481" height="365" id="flvplayer" align="middle"><param name="allowScriptAccess" value="sameDomain" /><param name="movie" value="/multimedia_contenidos//flvplayer.swf?src=/multimedia_contenidos/'+pelicula+'&autoplay=1&asp=0&hidecontrols=0" /><param name="quality" value="high" /><param name="bgcolor" value="#cccccc" /><embed src="/multimedia_contenidos//flvplayer.swf?src=/multimedia_contenidos/'+pelicula+'&autoplay=1&asp=0&hidecontrols=0" quality="high" bgcolor="#cccccc" width="481" height="365" name="flvplayer" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer"/></object></div>';

	//pelicula.write("flashcontent");  385px.
	
	document.getElementById("contenedorVideo").innerHTML=objetoFlash;

	document.getElementById("fondoVideo").style.height=alturaTotal+"px";
	document.getElementById("contenedorVideo").style.left=(document.body.scrollWidth-anchoFlash)/2+"px";



	document.getElementById("fondoVideo").style.display="inline";
	document.getElementById("fondoVideo").style.visibility="visible";
}

function cerrarVideo()
{
	document.getElementById("fondoVideo").style.display="none";
	document.getElementById("fondoVideo").style.visibility="hidden";
	document.getElementById("contenedorVideo").innerHTML=" ";
	//cortinaUp();
}

function getbrowserwidth()
{
	if (navigator.userAgent.indexOf("MSIE") > 0)
		return(document.body.clientWidth);
	else
		return window.outerWidth;
}

function getbrowserheight()
{
	if (navigator.userAgent.indexOf("MSIE") > 0)
		return(document.body.clientHeight);
	else
		return(window.outerHeight);
}
