document.getElementById("engine_form").onsubmit=userCheckFields;

controllerSetFocus("user_last_name");


function userCheckFields()
{
if(!controllerCheckEmail("user_email")) return false;
	if(document.getElementById("user_password").value>"")
	{
	if(!controllerCheckIdentity("user_password", "user_confirm")) return false;
	}
return true;
}