function muestraVideo(cual,titulo,ancho,alto) {
	var str='';
	str+='<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http:\/\/download.macromedia.com\/pub\/shockwave\/cabs\/flash\/swflash.cab#version=8,0,0,0" width="' + ancho + '" height="' + alto + '">';
	str+='  <param name="movie" value="' + cual + '">';
	str+='  <param name="quality" value="high">';
	str+='  <embed src= "' + cual + '" quality="high" pluginspage="http:\/\/www.macromedia.com\/go\/getflashplayer" type="application\/x-shockwave-flash" width="' + ancho + '" height="' + alto + '"><\/embed>';
	str+='<\/object>';
	str+='<h1 style="width: 300px; float: left; color: #2V0F00; margin: 0; padding: 0 0 0 10px; font-size: 130%;">' + titulo + '<\/h1><a href="#" onclick="ocultaVideo()" class="cierravideo">Cerrar video<\/a>';
	document.getElementById("capavideo").innerHTML = str;
	document.getElementById("negro").style.visibility = "visible";
	document.getElementById("capavideo").style.visibility = "visible";
}
function muestraVideoP(cual,titulo,ancho,alto) {
	var str='';
	str+='<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http:\/\/download.macromedia.com\/pub\/shockwave\/cabs\/flash\/swflash.cab#version=8,0,0,0" width="' + ancho + '" height="' + alto + '">';
	str+='  <param name="movie" value="' + cual + '">';
	str+='  <param name="quality" value="high">';
	str+='  <embed src= "' + cual + '" quality="high" pluginspage="http:\/\/www.macromedia.com\/go\/getflashplayer" type="application\/x-shockwave-flash" width="' + ancho + '" height="' + alto + '"><\/embed>';
	str+='<\/object>';
	str+='<h1 style="width: 210px; float: left; color: #2V0F00; margin: 0; padding: 0 0 0 10px; font-size: 130%;">' + titulo + '<\/h1><a href="#" onclick="ocultaVideo()" class="cierravideo">Cerrar video<\/a>';
	document.getElementById("capavideo").innerHTML = str;
	document.getElementById("negro").style.visibility = "visible";
	document.getElementById("capavideo").style.visibility = "visible";
}
function ocultaVideo() {
	document.getElementById("capavideo").innerHTML = "&nbsp;";
	document.getElementById("negro").style.visibility = "hidden";
	document.getElementById("capavideo").style.visibility = "hidden";
}