function getElementFromId(id_element) {
    var element;
    if(document.getElementById)
        element = document.getElementById(id_element);
    else
        element = document.all[id_element];
    return element;
}

function getHost() {
var url = window.location;
var urlparts = url.split('/');
var host = urlparts[0];
alert(host);
}

function checkEmail(obj) {
    
    var val = obj.value;
    if (val == "") {
        alert("L'indorizzo email e' un campo obbligatorio");
        return false;
    } else if(val.indexOf("@") == -1 || val.indexOf(".") == -1) {
        alert("L'indorizzo email non risulta corretto");
        return false;
    } else {
        if (location.host.indexOf("www.violagolf.com") > -1) {
            getElementFromId("__utente__").value = "violagolfcom";
        }
        getElementFromId("__module__").submit();
    }
    return true;
} 
