*/
public Account createAccount(Integer id)
{
try
{
AccountHome home = (AccountHome)new InitialContext().lookup("Account");
Account acct = home.create(id, 0, null);
return acct;
} catch (Exception e)
{
throw new EJBException("Could not create account", e);