//var para="";
function validate_fsub() {
//document.fsub.sub.disabled=true;
if (document.fsub.FILE1.value.length < 1){
    alert("The process cannot continue because there\nis no file to upload.\n\nPlease use the BROWSE button to locate\nthe file you wish to upload.");
    document.fsub.FILE1.focus();
	//document.fsub.sub.disabled=false;
    return (false);
   }

if (document.fsub.DESCR.value.length < 50){
    alert("The description for the file you wish to upload is too short.\nPlease make it more descriptive.");
    document.fsub.DESCR.focus();
	//document.fsub.sub.disabled=false;
    return (false);
}

  if (veryLongWord(document.fsub.DESCR.value)){
  		alert("You have entered a very long word or you did" +
  		"\nnot have the proper simple punctuations." +
  		"\n\nPlease check your entry.");
	    document.fsub.DESCR.focus();
  	    //document.fsub.sub.disabled=false;
  		return (false);
   }
  //para="i="+encodeURI(document.fsub.FILE1.value)+"&d="+encodeURI(document.fsub.DESCR.value);  
  //document.fsub.sub.disabled=true;   
  return (true);
}
