var para="";
function validate_frmArticle() {
if (document.frmArticle.txtTitle.value.length < 3){
    alert("It appears that you wish to submit an article. However, you are trying\nto submit an invalid entry at the TITLE section. Type your article's TITLE on the space provided and re-submit\nby clicking the button once again.");
    document.frmArticle.txtTitle.focus();
    return (false);
   }
   
if (document.frmArticle.SArticle.value.length < 3){
    alert("It appears that you wish to submit an article. However, you are trying\nto submit an empty one. Type your article's on the space provided and re-submit\nby clicking the button once again.");
    document.frmArticle.SArticle.focus();
    return (false);
   }
   para="t="+encodeURI(document.frmArticle.txtTitle.value)+"&b="+encodeURI(document.frmArticle.SArticle.value);  ;  
   return true;
}

