function Check2Submit(Obj,F,A){

  if (F=="submit"){
      
    var GoOn=0
    if (aw_CheckEmailText(Obj.txtEmail.value)==0) GoOn=2;
    
    if ( (Obj.txtName.value.length==0) ){
      GoOn=6;
    }
    
    if (GoOn!=0){
      //alert("GoOn=" + GoOn);
      var FileName = "../lib/aw_help1.htm?id=" + parent.WhichLang + GoOn;
      parent.OpenNewWindow(FileName, "Help1", "300", "250", "50", "50", "no");
    }
    else{
      Obj.submit();
    }

  }
  
  if (F=="reset"){
    Obj.reset();
  }
  
}
