function validEmail(item) {
        var p1 = item.indexOf('@');
        var p2 = item.indexOf('.',p1);
        return ( p1 > 0) && (item.indexOf('@',p1+1) == -1) && (p1+1 < p2);
}

function isempty(s) {
    return !(s.length > 0);
}

function action(elementid,theString){
        document.getElementById(elementid).style.backgroundColor = '#FF8888';
        document.getElementById("error").innerHTML += "<li>"+theString+"</li>";
        return false;
}

function restore(elementid,elementOK){
        theStyle = document.getElementById(elementOK).style;
        document.getElementById(elementid).style = theStyle;
}

function setoke(elementid){
        document.getElementById(elementid).style.backgroundColor = '#B5CFE7';        
}
