function runSWF(url, parametros, ancho, alto, fondo) {
		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="'+url+'?'+parametros+'">');
		document.write('	<param name="scale" value="noscale">');
		document.write('	<param name="quality" value="high">');
		document.write('	<param name="menu" value="false">');
		document.write('	<param name="bgcolor" value="#'+fondo+'">');
		document.write('	<embed src="'+url+'?'+parametros+'" width="'+ancho+'" height="'+alto+'" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" scale="noscale" menu="false" bgcolor="#'+fondo+'"></embed>');
		document.write('</object>');
}

function verVideo(id) {
		ancho = 660;
		alto = 405;
		anchoPantalla=(screen.width/2)-(ancho/2)
		altoPantalla=(screen.height/2)-(alto/2)					
		var win= eval('window.open("videos.php?id="+id,"P_CR","width='+ancho+',height='+alto+',resizable=0,toolbar=0,location=0,directories=0,status=auto,menubar=0,scrollbars=0,left='+anchoPantalla+',top='+altoPantalla+',noresize")')
}
