/* author: Debbie Harrison T/A DVH Design */
/* Creation date: 29/01/2005 */
function checkform( thisform ) {
	if (thisform.ContactName.value == null || thisform.ContactName.value == "" ) {
		alert ("Please enter your Name") ;
		thisform.ContactName.focus() ;
		thisform.ContactName.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.TelNo.value == null || thisform.Email.value == "" ) {
		alert ("Please enter your E-mail Address") ;
		thisform.Email.focus() ;
		thisform.Email.select() ;
		return false ;
	}
	if (thisform.Email.value == null || thisform.TelNo.value == "" ) {
		alert ("Please enter your Phone Number") ;
		thisform.TelNo.focus() ;
		thisform.TelNo.select() ;
		return false ;
	}
	return true
}