// JavaScript Document

function callme() {
var d = new Date()
var strLtr1 = String.fromCharCode(65 + Math.round(Math.random() * 25));
var strLtr2 = String.fromCharCode(65 + Math.round(Math.random() * 25));
var ID =  ''+ d.getFullYear()+(d.getMonth() +1)+d.getDate()+d.getHours()+d.getMinutes();
var varC = ID + strLtr1 + strLtr2;
document.forms[1].Form_Number.value=varC;
}
function xdate() {
var d = new Date()
document.forms[1].Date_Received.value=d;
document.forms[1].Service_Management.value=' ';
document.forms[1].Reimbursement_Total.value=' ';
}
 
function onSubmitFunctions() {

 if (callme() ==false) {
  return false; 
  }
  if (xdate() ==false) {
  return false; 
  }
}
