function insertFlash(strSrc, intWidth, intHeight, strAlt, strID)
{
	var strFlash = '<object type="application/x-shockwave-flash" data="'+ strSrc +'"'
	strFlash	    += 'id="' + strID + '" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"';
	// strFlash	    += ' codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0"';
	strFlash	    += ' width="' + intWidth + '" height="' + intHeight + '" title="' + strAlt + '">';
	strFlash	+= '<param name="allowScriptAccess" value="sameDomain" />';
	strFlash	+= '<param name="movie" value="' + strSrc + '" />';
	strFlash	+= '<param name="quality" value="high" />';
	strFlash	+= '<param name="allowFullScreen" value="true" />';
	strFlash	+= '<param name="menu" value="false" />';
	strFlash	+= '<param name="wmode" value="transparent" />';
	strFlash	+= '<embed name="' + strID + '" src="' + strSrc + '" width="' + intWidth + '" height="' + intHeight + '"';
	strFlash	    += ' quality="high" wmode="transparent" pluginspage="http://www.macromedia.com/go/getflashplayer"';
	strFlash	    += ' type="application/x-shockwave-flash" menu="false"></embed>';
	strFlash	+= '</object>';
	
	/*var strFlash = '<!--[if !IE]>';
    strFlash += '<object id="flashObj" type="application/x-shockwave-flash" data="'+ strSrc +'" width="' + intWidth + '" height="' + intHeight + '">';
    strFlash += '<![endif]-->';
    strFlash += '<!--[if IE]>';
    strFlash += '<object id="flashObj" classid="clsid:D27CDB6E-AE6D-11CF-96B8-444553540000" width="' + intWidth + '" height="' + intHeight + '">';
    strFlash += '<![endif]-->';
    strFlash += '<param name="movie" value="'+ strSrc +'" />';
    strFlash += '</object>';*/
    
	document.write(strFlash); 
	document.close( );
}