function GetFlash(flashfilename, objwidth, objheight, objbgcolor)
{

document.write('<EMBED SRC="')
document.write(flashfilename)
document.write('" QUALITY=high BGCOLOR=#')
document.write(objbgcolor)
document.write(' WIDTH="')
document.write(objwidth)
document.write('" HEIGHT="')
document.write(objheight)
document.write('" TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash"></EMBED>');

}