function $(id){
    return document.getElementById(id);
}
function verificarPreencimento(campo){
    if (campo.value == ""){
        return false;
    }else{
        return true;
    }
}
function verificarEmail(campo){
    var valor = campo.value;
    var indiceA = valor.indexOf("@");
    var indiceP = valor.indexOf(".");
    if (indiceA < 1 || indiceP < (indiceA + 2)){
        return false;
    }else{
        return true;
    }
}

function news_focus(id){
	document.getElementById(id).value = "";
}


