
function showVideo(objId)
{
	var id = objId.toString().split("_")[1];
	for(var i = 0;i<10;i++)
	{
		if(document.getElementById("video_" + i)) document.getElementById("video_" + i).style.display="none";
	}
	document.getElementById("video_" + id).style.display="";
}

function showVideo2(objId, direccion, autoplay)
{
	var id = objId.toString().split("_")[1];
	for(var i = 0;i<21;i++)
	{
		if(document.getElementById("video_" + i)) document.getElementById("video_" + i).style.display="none";
	}
	var html = "";
	//var ancho = 500;
	//var alto = 350;
	var ancho = 387;
	var alto = 251;
	//var direccion="http://www.youtube.com/v/" + direccion + "&hl=es&fs=1&rel=0&showinfo=0;autoplay=" + autoplay;
	
	//html = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0"  color1="22b01b" color2="2FA4D1" width="'+ ancho +'" height="'+ alto +'">';
	//html = html + '<param name="movie" value="'+direccion+'" /><param name="quality" value="high"><param name="wmode" value="transparent" /><param name="allowFullScreen" value="true"></param><embed src="'+direccion+'" quality="high" wmode=transparent pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" allowfullscreen="true" color1="22b01b color2=2FA4D1 width="'+ancho+'" height="'+alto+'"></embed></object>';

	//var direccion="http://www.youtube.com/v/" + direccion + "?version=3&fs=1&hd=1&rel=0&showsearch=0&showinfo=0&iv_load_policy=3&modestbranding=1&theme=light&color=red";
		var direccion = "http://www.youtube.com/v/" + direccion + "?version=3&rel=0&modestbranding=1&theme=light&color=red&autoplay=" + autoplay;
	
	
	html = '<object width="'+ ancho +'" height="'+ alto +'">';
	html = html + '<param name="movie" value="'+direccion+'" /><param name="quality" value="high"><param name="wmode" value="transparent" /><param name="allowFullScreen" value="true"></param> <param name="allowscriptaccess" value="always"></param><embed src="'+direccion + '" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="'+ancho+'" height="'+alto+'" quality="high" wmode=transparent></embed></object>';
	
	document.getElementById("video_" + id).innerHTML = html;
	
	document.getElementById("video_" + id).style.display="";

}

function cargarSWF(direccion,ancho,alto){
    document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="'+ancho+'" height="'+alto+'">');
    document.write('<param name="movie" value="'+direccion+'" /><param name="quality" value="high"><param name="wmode" value="transparent" /><param name="allowFullScreen" value="true"></param><embed src="'+direccion+'" quality="high" wmode=transparent pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" allowfullscreen="true" width="'+ancho+'" height="'+alto+'"></embed></object>');
}


function cargarVideo(direccion,ancho,alto){
    document.write('<object classid="clsid:22D6F312-B0F6-11D0-94AB-0080C74C7E95" codebase="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=6,4,5,715" standby="Instalando Windows Media Player ..." type="application/x-oleobject" width="'+ancho+'" height="'+alto+'">');
	
    document.write('<param name="FileName" value="'+direccion+'" /><param name="quality" value="high"><param name="wmode" value="transparent" /><param name="allowFullScreen" value="true"><param name="AutoStart" value="true"><param name="CurrentPosition" value="5"><param name="ShowControls" value="true"><param name="showpositioncontrols" value="false"><param name="SHOWDISPLAY" value="false"><param name="ShowStatusBar" value="false"></param>   <embed src="'+direccion+'" quality="high" wmode=transparent pluginspage="http://www.microsoft.com/Windows/Downloads/Contents/Products/MediaPlayer/" type="application/x-mplayer2" autostart="0" volume="0"  uiMode="mini"transparentatstart="0" animationatstart="0" showcontrols="1"  showaudiocontrols="1" showpositioncontrols="0" showdisplay="0" showstatusbar="0" autosize="1" displaysize="0" align="absmiddle" loop="0" border="0"  enable="1"  stretchToFit="true" allowfullscreen="true" width="'+ancho+'" height="'+alto+'"></embed></object>');
}
