<!--
// js for all application steps

function cancel() {
if (confirm('Warning: You are about to cancel the application process. Click CANCEL if you do not want to do this')) {
document.appform.action = 'application_step_one.php';
document.appform.hcancel.value = 'true';	
document.appform.submit();
} else {
return false;
}
}

function logincheck(form) {
if (form.login.value == "")
{
	alert("Please enter your login name.");
	form.login.focus();
	return false;
}
if (form.password.value == "")
{
	alert("Please enter your password.");
	form.password.focus();
	return false;
}	
}

// -->
