// Fixes IE problem with Flash

function RunSWF(page_SWF, page_Title, page_Width, page_Height, page_Background)
{
document.write('<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"');
document.write('codebase="http://macromedia.com/cabs/swflash.cab#version=6,0,0,0"');
document.write('ID=flaMovie WIDTH=' + page_Width + ' HEIGHT=' + page_Height + '>');
document.write('<PARAM NAME=movie VALUE="' + page_SWF + '">');
document.write('<PARAM NAME=FlashVars VALUE="title=' +  page_Title + '">');
document.write('<PARAM NAME=quality VALUE=medium>');
document.write('<PARAM NAME=bgcolor VALUE=' + page_Background + '>');
document.write('<EMBED src="' + page_SWF + '" FlashVars="title=' + page_Title + '"');
document.write('bgcolor=' + page_Background + ' WIDTH=' + page_Width + ' HEIGHT=' + page_Height);
document.write('TYPE="application/x-shockwave-flash">');
document.write('</EMBED>');
document.write('</OBJECT>');
}
