function insertFlash( strSrc, intWidth, intHeight, strAlt, strID ){
    var strFlash = '<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="' + intWidth + '" height="' + intHeight + '" title="' + strAlt + '"' + (strID != '' ? ' id="' + strID + '"' : '') + '>' +
                    '<param name="movie" value="' + strSrc + '" />'+
                    '<param name="quality" value="high" />'+
                    '<param name="wmode" value="transparent" />'+
                    '<param name="menu" value="false" />'+
                    '<embed src="' + strSrc + '" width="' + intWidth + '" height="' + intHeight + '" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" menu="false" wmode="transparent"' + (strID != '' ? ' name="' + strID + '"' : '') + ' swLiveConnect="true"></embed>'+
                    '</object>';
    document.write(strFlash);
    document.close();
}