function createRequestObject_Data()
{
	var request = false;
    try
    {
        // Mozilla/Safari
        if (window.XMLHttpRequest)
        {
            request = new XMLHttpRequest();
        }
        // IE
        else if (window.ActiveXObject)
        {
            request = new ActiveXObject("Microsoft.XMLHTTP");
        }
    }
    catch (e)
    {
        alert(e);
    }
    if(!request )
    {
        alert("Impossibile creare l'oggetto XHR.");
    }
    return request;
}

var http_Data = createRequestObject_Data();

function getCurrData()
{
    /* NO FORM, MANDA CONTENUTO PASSATO COME PARAMETRO VIA GET */
    http_Data.abort();
    if (window.location.href.indexOf("www.style.it")!=-1)
    {
        http_Data.open('GET', '/cm/inc/get_data.asp', true);
    }
    else
    {
        http_Data.open('GET', '/cm/inc/get_data.php', true);
    }
    http_Data.onreadystatechange = handleResponse_Data;
    http_Data.send(null);
}

function handleResponse_Data()
{
    if(http_Data.readyState == 4)
    {
       document.getElementById("current_data").innerHTML = http_Data.responseText;
    }
}

function popinvia () {
w=416;
h=410;
LeftPosition =(screen.width) ? (screen.width-w)/2 : 0;
TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
window.open("/cont/pop_invio.asp?url="+escape(document.location),'invia','width='+w+',height='+h+',top='+TopPosition+',left='+LeftPosition+',scrollbars=no,fullscreen=no')
}

