function loadFlash(swf,width,height,qs,bgcolor) {
    //workaround for Microsoft 'feature' of making you click on Flash to activate it
    //pass in the swf file you're trying to load and the associated query string to pass into Flash
    //also pass in the expected height and width of the movie
    //if no bgcolor set it to blue
    if (bgcolor == '' || bgcolor == undefined) bgcolor='#405D95';
    document.writeln('<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" WIDTH="'+ width +'" HEIGHT="'+ height +'" id="template" ALIGN="">');
    document.writeln('<PARAM NAME=movie VALUE="' + swf + qs + '"><PARAM NAME=quality VALUE=high> <PARAM NAME=wmode VALUE=opaque> <PARAM NAME=bgcolor VALUE=' + bgcolor + '> <EMBED src="' + swf + qs + '" quality=high wmode=opaque bgcolor=' + bgcolor + ' WIDTH="'+ width +'" HEIGHT="'+ height +'" NAME="template" ALIGN="" TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer"></EMBED>');
    document.writeln('</OBJECT>');
}

function loadPopUpFlash(swf,width,height,qs,bgcolor) {
    //workaround for Microsoft 'feature' of making you click on Flash to activate it
    //pass in the swf file you're trying to load and the associated query string to pass into Flash
    //also pass in the expected height and width of the movie
    //if no bgcolor set it to blue
    if (bgcolor == '' || bgcolor == undefined) bgcolor='#828282';
    document.writeln('<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" WIDTH="'+ width +'" HEIGHT="'+ height +'" id="template" ALIGN="">');
    document.writeln('<PARAM NAME=movie VALUE="' + swf + qs + '"><PARAM NAME=quality VALUE=high> <PARAM NAME=wmode VALUE=opaque> <PARAM NAME=bgcolor VALUE=' + bgcolor + '> <EMBED src="' + swf + qs + '" quality=high wmode=opaque bgcolor=' + bgcolor + ' WIDTH="'+ width +'" HEIGHT="'+ height +'" NAME="template" ALIGN="" TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer"></EMBED>');
    document.writeln('</OBJECT>');
}


