birthdate = new Date();
annualSalary = new Double(generator.nextDouble() * 150000.0 + 20000.0);
loanAmount = new Double(generator.nextDouble() * 1000000.0 + 50000.0);
try{
loanmanager.submitLoanApplication(id, name, address, birthdate, sssNo, annualSalary, loanAmount);
System.out.println("Submitting new loan application...");
System.out.println("-> submit count is now = " + loanmanager.getSubmitCount());
}catch (RemoteException re){
re.printStackTrace();
}