function SaveContact()
{
    errors = "";
    
    if (((trim($("txPhone").value).length <= 0)||(!isPhoneValid( $("txPhone").value)))&&((trim($("txEmail").value).length <= 0)||(!isEmail( $("txEmail").value))))
    {
        errors +=  " - introduceti valori valide in unul din campurile \"Telefon\" sau \"Email\";\n";
    }        
    
    if ($("ddAddressees").value == 0)
    {
        errors += " - alegeti un destinatar;\n";
    }
    
     if (trim($("txMsg").value).length <= 0)
    {
        errors += " - completati campul \"Mesaj\";\n";
    }
    if (errors.length > 0)
    {
        alert("Va rugam sa remediati urmatoarele probleme:\n" +errors);        
    }
    else
    {
        document.getElementById("hAction").value = "SaveContact";    
        document.getElementById("frmMain").submit();
    }
}

