// JavaScript Document

//Devuelve el flash con el nombre ancho y alto pasados como paramtro.
//Esta hecho de esta manera para no tener problemas en IE

function getFlash(nombre_flash, width, heigth, title){
	html = '<object type="application/x-shockwave-flash" data="'+nombre_flash+'" height='+heigth+'" width="'+width+'" name="reccBar2" id="reccBar2" title="'+title+'">';
		html = html + '<param name="movie" value="'+nombre_flash+'" />';
		html = html + '<param name="quality" value="high" />';
		html = html + ' <param name="wmode" value="transparent"/>';
		html = html + '</object>';
		document.write(html);
}