/* Entry should be Valid text(for Special Circumstances).Invalid Characters won't be allowed.*/
 function InvalidText(param){
  
  flg=0;
  str="";
  spc=""
  arw="";
  for (var i=0;i< param.length;i++){
   cmp="<>;"
   tst=param.substring(i,i+1)
   if (cmp.indexOf(tst)>-1){
    flg++;
    str+=" "+tst;
    spc+=tst;
    arw+="^";
   }
   else{arw+=" ";}
  }
  if (flg!=0){
   if (spc.indexOf(" ")>-1) {
    str+=" and a space";
    }
   //alert(param+"\r"+arw+"\rThis entry must be a Valid Text. I found "+flg+" unacceptable: "+str+".");
  //return(param+"\r"+arw+"\rThis entry must be a Valid Text. I found "+flg+" unacceptable: "+str+".");
  return false;
  }
 }  