//==========================================================================
// Function: validateSubscriptionCareForm(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.Email.value == "") {
        alert( "Email is a required field.  Please re-submit the form including your Email Address." );
        form.Email.focus();
        return false ;
    }	
		    
	return true ;
}

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