function goPage(step) {
	if (step == "") {
		step = 1;
	}
	var mypage = "appstep" + step + ".php";
	document.application.action = mypage;
	document.application.submit();		
}
function goFinal() {
    if (confirm("Are you ready to submit the application?"))
	{
	//document.application.action = "TestFormSubmission.php";
	document.application.action = "inc/makepdf.php";
	document.application.target = "_self";
	document.application.submit();
	// use this line if you want to let them keep browsing the app wizard in the same window after submitting it
	//document.application.target = "_self";
	// use this line if you want to send them somewhere else in the main window
	//document.location.href = "thankyou.php";
	// use this line if you want to close the application wizard window and make them continue browsing in the pdf window
	//window.close();
	}
	else
	{
	return false;
	}
}