function isFlashInstalled()
{
    var swf = null;
    try
    {
        swf =new ActiveXObject('ShockwaveFlash.ShockwaveFlash');    // this will pass in IE
    }
    catch(e)
    {
        swf = navigator.plugins["Shockwave Flash"];                 // this will pass in FF
    }   
    
    if(swf==null)
    {
        return false;
    }
    else
    {
        return true;
    }
}

/*The folowing codes is required by the left navigation flash loading*/
function checkFlash()
{
    if(isFlashInstalled()==false)
    { 
     	location.href="http://specials.uk.msn.com/o2businesstoolkit/default_noFlash.aspx";
    }
}

checkFlash();