// JavaScript Document
flash = function (archivo,xwidth,xheight)
{
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" align="middle" width="'+xwidth+'" height="'+xheight+'">')

document.write('<param name="movie" value="'+archivo+'">')
document.write('<param name="quality" value="high">')
document.write('<param value="sameDomain" name="allowScriptAccess" />')
document.write('<param value="transparent" name="wmode" />')

document.write('<embed src="'+archivo+'" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="'+xwidth+'" height="'+xheight+'" align="middle" allowScriptAccess="sameDomain" wmode="transparent" ></embed>')

document.write('</object>')
}