function setHomePage(){
    var siteURL = "http://www.poker.com.es";
    if (document.all) {
        document.body.style.behavior = "url(#default#homepage)";
        document.body.setHomePage(siteURL);
    }
    else {
        if (document.getElementById) {
            $('firefox_homepage').update('<a href="http://www.poker.com.es">Arrastra este enlace sobre tu boton de inicio para hacer esta tu pagina de inicio.</a>').setStyle({'display':'block'});
        }
    }
}

function bookmark(){
    var title = 'Poker.com.es';
    var url = 'http://www.poker.com.es';
    if (document.all) 
        window.external.AddFavorite(url, title);
    else 
        if (window.sidebar) 
            window.sidebar.addPanel(title, url, "")
        else 
            if (window.sidebar && window.sidebar.addPanel) 
                window.sidebar.addPanel(title, url, "");
}

function abrirMensajeForo(url) {
	var urlcompleta = "http://www.poker.com.es/foro/index.php?topic=";
	urlcompleta += url;
	document.location.href = urlcompleta;
}