//==========================================================================
// Function: validateContactForm(this)
// Description : Validates email form to make sure required fields entered
// usage: <form action="/cgi-bin/dbform.cgi" method="POST" onsubmit="return checkform(this);">
// note: June 30, 2001
// Author: Ivan Svetic - D.J.'s Micro-Info Inc. (www.deejays.com)


function checkform ( form )
{
   		
	
	if (form.Name.value == "" || form.Name.value == null) {
        alert( "NAME is a required field.  Please re-submit the form including your Name." );
        form.Name.focus();
        return false ;
    }
	

	
	
	if (form.comments_or_questions.value == "" || form.comments_or_questions.value == null) {
        alert( "YOUR COMMENTS AND FEEDBACK is a required field.  Please re-submit the form including this information." );
        form.comments_or_questions.focus();
        return false ;
    }	
	
	 
	return true ;
}

//===========================================================================
