/* author: Debbie Harrison T/A DVH Design */
/* Creation date: 04/10/2005 */
function checkform( thisform ) {
	if (thisform.Name.value == null || thisform.Name.value == "" ) {
		alert ("Please enter your Name") ;
		thisform.Name.focus() ;
		thisform.Name.select() ;
		return false ;
	}
	if (thisform.Company.value == null || thisform.Company.value == "" ) {
		alert ("Please enter your Company Name") ;
		thisform.Company.focus() ;
		thisform.Company.select() ;
		return false ;
	}
	if (thisform.Address.value == null || thisform.Address.value == "" ) {
		alert ("Please enter your Address") ;
		thisform.Address.focus() ;
		thisform.Address.select() ;
		return false ;
	}
	if (thisform.Email.value == null || thisform.Email.value == "" ) {
		alert ("Please enter your Email Address" ) ;
		thisform.Email.focus() ;
		thisform.Email.select() ;
		return false ;
	}
	if (thisform.Phone.value == null || thisform.Phone.value == "" ) {
		alert ("Please enter your Phone Number" ) ;
		thisform.Phone.focus() ;
		thisform.Phone.select() ;
		return false ;
	}
	return true
}