var MESSAGE_ID = "divMessage";
var alex_url = "http://www.alex75.it?from=bax_auto";

function closeMessage() {
    //alert("close");
    var messageBox = document.getElementById(MESSAGE_ID);
    messageBox.style.display = "none";
}

function getWidth() {
    return screen.width;
}

function openSite() {
    //alert("openSite");
    window.open(alex_url, "_blank");
    //location.href = "http://www.alex75.it";    
}

setTimeout("openSite(); ", 3000);
