function ver_video(cod)
{
	var contVid=document.getElementById("content_player_vid");
	//codigo embded de blip.tv
	var codigoBlip="<embed src=\"http://blip.tv/play/"+cod+"\" type=\"application/x-shockwave-flash\" width=\"490\" height=\"413\" allowscriptaccess=\"always\" allowfullscreen=\"true\"></embed>";
	contVid.innerHTML=codigoBlip;
}

function ver_videoyt(cod)
{
	var contVid=document.getElementById("content_player_vid");
	//codigo embded de youtube
	var codigoYt="<object width=\"490\" height=\"413\"><param name=\"movie\" value=\"http://www.youtube.com/v/"+cod+"?fs=1&amp;hl=es_ES\"></param><param name=\"allowFullScreen\" value=\"true\"></param><param name=\"allowscriptaccess\" value=\"always\"></param><embed src=\"http://www.youtube.com/v/"+cod+"?fs=1&amp;hl=es_ES\" type=\"application/x-shockwave-flash\" allowscriptaccess=\"always\" allowfullscreen=\"true\" width=\"490\" height=\"413\"></embed></object>";
	contVid.innerHTML=codigoYt;
}
