// The first few functions just validate various formsfunction ValidateEmailAddressField(thisId){	if ((document.getElementById(thisId).value == '') || (document.getElementById(thisId).value == 'Your Email')) {		window.alert('Please enter a valid email address');		return false;	}}function ValidateNewAccountForm(){	if (document.getElementById('FirstName').value == ''){		window.alert('Please enter your first name');		document.getElementById('FirstName').focus();		return false;	}		if (document.getElementById('LastName').value == ''){		window.alert('Please enter your last name');		document.getElementById('LastName').focus();		return false;	}		if (document.getElementById('Address1').value == ''){		window.alert('Please enter your address');		document.getElementById('Address1').focus();		return false;	}		if (document.getElementById('Postcode').value == ''){		window.alert('Please enter your postcode');		document.getElementById('Postcode').focus();		return false;	}	if (document.getElementById('EmailAddress').value == ''){		window.alert('Please enter your email address');		document.getElementById('EmailAddress').focus();		return false;	}		if (document.getElementById('Password1').value == ''){		window.alert('Please enter your password');		document.getElementById('Password1').focus();		return false;	}			if (document.getElementById('Password2').value == ''){		window.alert('Please re-type your password');		document.getElementById('Password2').focus();		return false;	}		if (document.getElementById('Password1').value != document.getElementById('Password2').value){		window.alert('Please enter the same password into both boxes');		document.getElementById('Password1').focus();		return false;	}			if (document.getElementById('PasswordHint').value == ''){		window.alert('Please enter a password hint');		document.getElementById('PasswordHint').focus();		return false;	}}function ValidateNewAddressForm(){	if (document.getElementById('FirstName').value == ''){		window.alert('Please enter your first name');		document.getElementById('FirstName').focus();		return false;	}		if (document.getElementById('LastName').value == ''){		window.alert('Please enter your last name');		document.getElementById('LastName').focus();		return false;	}		if (document.getElementById('Address1').value == ''){		window.alert('Please enter your address');		document.getElementById('Address1').focus();		return false;	}		if (document.getElementById('Postcode').value == ''){		window.alert('Please enter your postcode');		document.getElementById('Postcode').focus();		return false;	}}// Dreamweaver generated code for opening windows etcfunction MM_openBrWindow(theURL,winName,features) { //v2.0  window.open(theURL,winName,features);}