function getFlash(strName, width, height)
{
   document.write('<object type="application/x-shockwave-flash" data="'+strName+'" width="'+width+'" height="'+height+'">\n');
   document.write('<param name="movie" value="'+strName+'" />\n');
   document.write('</object>\n');
}
function getMovie(strName, width, height)
{
	document.write('<object id="MediaPlayer" width="'+width+'" height="'+height+'" classid="CLSID:22D6f312-B0F6-11D0-94AB-0080C74C7E95" standby="Loading Windows Media Player components..." type="application/x-oleobject" codebase="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=6,4,7,1112">')
	document.write('<param name="filename" value="'+strName+'"')
	document.write('<param name="Showcontrols" value="True">')
	document.write('<param name="autoStart" value="True">')
	document.write('<embed type="application/x-mplayer2" src="'+strName+'" width="'+width+'" height="'+height+'" name="MediaPlayer"></embed>')
	document.write('</object>')
}
function getFlashSafe(strFlash, intWidth, intHeight, strJpg, strLink) {
    include:new Array("/js/flash_detect_min.js");
//    document.write('<script type="text/javascript" src="/js/flash_detect_min.js"></scr' + 'ipt>');

    if (!FlashDetect.installed) {
        if (strLink.toString().length > 0) {
            document.write('<a href="' + strLink + '"><img src="' + strJpg + '" alt="Be Couture" /></a>');
        }
        else {

            document.write('<img src="' + strJpg + '" alt="Be Couture" />');
        }
    }
    else {
        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>