function showControl(dir){
	var cntVideo = document.getElementById('ficha-video');
	if(dir==1)cntVideo.style.height = "245px";
	else cntVideo.style.height = "203px";
}

function pintaPlayer(parametro, ancho, alto){
	document.write('<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="'+ancho+'" height="'+alto+'">');
	document.write('<param name="movie" value="http://tv.dmmotion.com/asset/76" />');
	document.write('<param name=flashvars value="'+parametro+'"><param name="allowFullScreen" value="true" />');
	document.write('<embed src="http://tv.dmmotion.com/asset/76" flashvars="'+parametro+'" allowFullscreen="true" type="application/x-shockwave-flash" width="'+ancho+'" height="'+alto+'"></embed>');
	document.write('</object>');
}