//javascript

/****************** code for locator.shtml *****************************/


function checkValid()
{
	if (!document.Fullform.Contact_Name.value) 
		{alert("Section 1.\nPlease enter the name of the contact person for your practice.");return false}
	if (!document.Fullform.Practice_Name.value) 
		{alert("Section 1.\nPlease enter the name of your practice.");return false}
	if (!document.Fullform.Contact_Fax.value) 
		{alert("Section 1.\nPlease enter your fax number.");return false}
	if (!document.Fullform.Contact_Email.value) 
		{alert("Section 1.\nPlease enter your email address.");return false}
		
	return confirm("Is the form complete and accurate?\n\nDid you print a copy for your records?\n\nClick OK to continue or Cancel to return to the form.")
}