function confirmLink(theLink)
{
    var is_confirmed = confirm('Ban co that su muon thoat khoi tai khoan khong?');
    if (is_confirmed) {
        theLink.href += '';
    }
    return is_confirmed;
}
function confirmLink1(theLink)
{
    var is_confirmed = confirm('Ban co that su muon xoa tin nay khong ?');
    if (is_confirmed) {
        theLink.href += '';
    }
    return is_confirmed;
}
function confirmLink2(theLink)
{
    var is_confirmed = confirm('Ban co chac muon xoa anh nay khong ?');
    if (is_confirmed) {
        theLink.href += '';
    }
    return is_confirmed;
}
function setHomePage()
{
    var isIE= navigator.userAgent.indexOf('MSIE') != -1;
    
    if(isIE)
    {
        var url = 'http://www.niemhyvong.com';
        
        var homePage = document.body;
        
        homePage.style.behavior = 'url(#default#homepage)';
        homePage.setHomePage(url);
    }
    else
    {
        alert('Nhan to hop phim [Ctrl+D] de dat Niemhyvong.com lam homepage!');
    }
}

function addFavorite()
{
    var url = window.location.href;
    var title = document.title;
    
    if(document.all)
    {
        window.external.AddFavorite(url, 'Niemhyvong - ' + title);
    }
    else if(window.sidebar)
    {
        window.sidebar.addPanel('Niemhyvong - ' + title, url, '');
    }
}