function chkem(e)
{
    v=true;

    if(e=="")
        v=false;

    if(e.search(/@/)==-1)
        v=false;

    if(e.search(/\./)==-1)
        v=false;

    if(e.search(/ /)!=-1)
        v=false;

    if(e.search(/\'/)!=-1)
        v=false;

    if(e.search(/\"/)!=-1)
        v=false;

    if(e.search(/,/)!=-1)
        v=false;

    if(e.charAt(e.length - 1)=="@" || e.charAt(e.length - 1)==".")
        v=false;

    return(v);
}

function qs(lang)
{
    if(document.QuickSearch.t.value=="-1" &&
       document.QuickSearch.r.value=="-1" &&
       document.QuickSearch.p.value=="-1")
    {
        if(lang == "it")
            msg="Indicare almeno un criterio di ricerca";
        else
            msg="Please enter at least one search parameter";

        alert(msg);

        return;
    }

    document.QuickSearch.submit();
}

function PrintPage(l)
{
    if( window.print )
        window.print();
    else
    {
        if( l == "it" )
            m="Questo browser non supporta la funzione di stampa\nda questo bottone. Utilizzare il bottone di stampa\nnella barra degli strumenti o nel menu del browser";
        else
            m="This browser does not support the print function\nfrom this button. Please use the print button on\nyour browser's toolbar or menu";

        alert(m);
    }

    return(false);
}
