    function CancelRedirect()
    {
        var URL = location.pathname;
        if (URL == "/tips-advice/submit-tips")
        {
            window.location = "http://" + location.hostname;
        }
        if (URL == "/community/websites-moms-love-submit")
        {
            window.location = "http://" + location.hostname;
        }
        if (URL.match("/tips-advice/") == "/tips-advice/")
        {
            if (URL.match("/pregnancy") == "/pregnancy")
            {
                window.location = "http://" + location.hostname + location.pathname;
            }
            else if (URL.match("/mom-and-baby") == "/mom-and-baby")
            {
                window.location = "http://" + location.hostname + location.pathname;
            }
            else if (URL.match("/dads") == "/dads")
            {
                window.location = "http://" + location.hostname + location.pathname;
            }
        }
        if (URL.match("/tips-advice/tips") == "/tips-advice/tips")
        {
            window.location = "http://" + location.hostname + location.pathname;
        }
        var x;
        x = getObj("ctl00_Header1_divAccessFunction");
        if (x != null)
        {
            x.style.display = "none";
        }
        
        var y;
        y = getObj("ctl00_Header1_hf_RedirectTo");
        if (y != null)
        {
            y.value = "";
        }

    }

function getObj(id)
{
    var o = $find(id);
    if(o == null)
    {
        o = $get(id);
        if(o == null)
            o = document.getElementById(id);
    }
    return o;
}


//function SubmitASite_Click()
//{
//    var p;
//    p = getObj('ctl00_Header1_lblLoggedIn');
//    
//    if (p != null)
//    {
//        if (p.textContent.substring(0, 2) == 'Hi')
//        {
//            window.location = "/tools/websites-moms-love-submit"
//        }
//        else
//        {
//            var msg = getObj('ctl00_Header1_divAccessFunction');
//            msg.style['display'] = 'block';
//            
//            var hf = getObj('ctl00_Header1_hf_RedirectTo');
//            hf.textContent = 'submit-websites';
//            
//            var login = $find('ctl00_Header1_programmaticLoginModalPopup');
//            
//            if(login != null)
//                login.show();
//        }
//    }
//    else
//    {
//        var msg = getObj('ctl00_Header1_divAccessFunction');
//        msg.style['display'] = 'block';
//        
//        var hf = getObj('ctl00_Header1_hf_RedirectTo');
//        hf.textContent = 'submit-websites';
//        
//        var login = $find('ctl00_Header1_programmaticLoginModalPopup');
//        
//        if(login != null)
//            login.show();
//    }
//}