// JavaScript Document<!--function checkform ( form ){		// ** START ** //				// ** check for first name entry ** // 		if (form.firstname.value == ""){			alert ( "Please enter your first name." );			form.firstname.focus();			return false;		}				// ** check for last name entry ** //		if (form.lastname.value == ""){			alert ( "Please enter your last name." );			form.lastname.focus();			return false;		}				// ** check for business title entry ** //		if (form.title.value == ""){			alert ( "Please enter your business title." );			form.title.focus();			return false;		}				// ** check for company entry ** //		if (form.company.value == ""){			alert ( "Please enter the name of your company." );			form.company.focus();			return false;		}				// ** check for email entry ** //		if (form.email.value == ""){			alert ( "Please enter your email address." );			form.email.focus();			return false;					}				// ** check for address entry ** //		if (form.address1.value == ""){			alert ( "Please enter the first line of your address." );			form.address1.focus();			return false;		}				// ** check for city entry ** //		if (form.city.value == ""){			alert ( "Please enter the city you are based in." );			form.city.focus();			return false;		}				// ** check for country entry ** //		if (form.country.value == ""){			alert ( "Please enter the country you are based in." );			form.country.focus();			return false;		}										// ** END ** //		return true;}//-->