/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

function verify_fields_en() {
    var email = document.getElementById("email").value;
    var description = document.getElementById("description").value;

    if (email=="" || description == "") {
        alert("Please complete required information.");
        return false;
    }
    return true;
}

function verify_fields() {
    var email = document.getElementById("email").value;
    var description = document.getElementById("description").value;

    if (email=="" || description == "") {
        alert("الرجاء اعطاء المعلومات الازامية");
        return false;
    }
    return true;
}


