// FLASH 8 OBJECT/EMBED FUNCTION

function Flash8(src,idname,width,height,bg) {

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='" + width + "' HEIGHT='" + height + "' id='" + idname + "' ALIGN='middle'>");
document.write("<PARAM NAME=movie VALUE='" + src + "'>");
document.write("<PARAM NAME=menu VALUE=true><PARAM NAME=salign VALUE=lt>");
document.write("<PARAM NAME=quality VALUE=high>");
document.write("<PARAM NAME=bgcolor VALUE=" + bg + ">");
document.write("<PARAM NAME=loop VALUE=false>");
document.write("<param name='allowScriptAccess' value=always >");
document.write("<EMBED src='" + src + "' menu=true quality='high' swLiveConnect=true bgcolor=" + bg + "  WIDTH='" + width + "' HEIGHT='" + height + "' NAME='" + idname + "' ID='" + idname + "' ALIGN='top' LOOP='false' salign='lt' TYPE='application/x-shockwave-flash' allowScriptAccess='always' PLUGINSPAGE='http://www.macromedia.com/go/getflashplayer'>");
document.write("</EMBED>");
document.write("</OBJECT>");

};










