function initFrankPage()
{
    if(window.navigator.userAgent.indexOf("MSIE")>0)
    {
        var a = document.getElementById('addTalktoFRANK');
        a.href = "msnim:add?contact=talktofrankbot@hotmail.co.uk";
    }
    else
    {
        var a = document.getElementById('addTalktoFRANK');
        a.href = "javascript:alert('You are not using IE, please add talktofrankbot@hotmail.co.uk to your msn contact list manually.');";
    }
    
    if(window.navigator.userAgent.indexOf("MSIE")>0 && window.navigator.userAgent.indexOf("6.0")>0)
    {
        document.getElementById('right1').style.left="60px";
        document.getElementById('right2').style.left="60px";
    }
}

initFrankPage();