runflashLoaded = 1;
function runFlash(swfName, width, height, altContent)
{
    var str = '';
    str += '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="'+width+'" height="'+height+'">';
	str += '<param name="movie" value="'+swfName+'.swf" />';
	str += '<!--[if !IE]>-->';
	str += '<object type="application/x-shockwave-flash" data="'+swfName+'.swf" width="'+width+'" height="'+height+'">';
	str += '<!--<![endif]-->';
	str += altContent;
	str += '<!--[if !IE]>-->';
    str += '</object>';
    str += '<!--<![endif]-->';
    str += '</object>';
    document.write(str);
}