function getFlash(strFlash, width, height)
 {
    document.write('<object type="application/x-shockwave-flash" data="' + strFlash + '" width="' + width + '" height="' + height + '">\n');
    document.write('<param name="movie" value="' + strFlash + '" />\n');
    document.write('<param name="wmode" value="transparent" />\n');
    document.write('<param name="allowScriptAccess" value="always" />\n');
    document.write('</object>\n');
}
function getFlashSafe(strFlash, intWidth, intHeight, strName, strJpg, strLink)
{
    if (!FlashDetect.installed) {
        if (strLink.toString().length > 0) {
            document.write('<a href="' + strLink + '"><img src="' + strJpg + '" alt="'+strName+'" /></a>');
        }
        else {

            document.write('<img src="' + strJpg + '" alt="' + strName + '" />');
        }
    }
    else {
        getFlash(strFlash, intWidth, intHeight);
    }
}

function getFlashIgnore(strFlash, intWidth, intHeight) 
{
    if (FlashDetect.installed) 
        getFlash(strFlash, intWidth, intHeight);     
}



//document.write('<object classid="clsid:6BF52A52-394A-11d3-B153-00C04F79FAA6">');
//document.write('<param name="URL" value="/flash/flash.swf">');
//document.write('<param name="autoStart" value="-1"></object>');
//<object type="application/x-shockwave-flash" data="/flash/flash.swf" width="555" height="392"><param name="movie" value="/flash/flash.swf" /></object>
