// Nov 18 2009 - All accounts set to hrblockcom now.  Leaving original logic though.
omni_account = "hrblockcom";

if (  (document.location.href.indexOf("/press/") == -1) &&  (document.location.href.indexOf("/presscenter/") == -1)  )
{
    // not on a press center page.  if on loginRedirect and taxtype is otp then use ffa report suite instead.
    if (document.location.href.indexOf("loginRedirect.html") != -1)
    {
        // on loginRedirect.html page, is the taxtype otp?
        var ttyp="";

        try
        {
        	ttyp=getQueryValue("taxtype");

            if (ttyp.toLowerCase()=="otp")
            {
                omni_account = "hrblockcom"; 
            }  
            else
            {
                omni_account = "hrblockcom";
            }
        }
        catch (e)
        {
            //
        }
    }
    else
    {
        omni_account = "hrblockcom";
    }
}
else
{   // on a press center page
    omni_account = "hrblockcom";   
}
