	function extscripttest() {
		alert('External Javascript Working');
	}

	function frmValidation() {
		strName = new String(document.getElementById('txtName').value);
		strTelephone = new String(document.getElementById('txtTelephone').value);
		strEmail = new String(document.getElementById('txtEmail').value);
		strWeddingDate = new String(document.getElementById('txtWeddingDate').value);
		strHearedFrom = new String(document.getElementById('selHearedFrom').value);
		strMessage = new String(document.getElementById('txtMessage').value);
		
		strValidateMessage = new String('');
		var intValidate = 0

		if (strName == '' || strTelephone == '' || strEmail == '' || strWeddingDate == '' || strHearedFrom == '' || strMessage == '') {
			strValidateMessage = 'All fields are required!';
			intValidate = intValidate + 1;
		}
		/*if (strEmailAddress == '') {
			strValidateMessage = strValidateMessage + '\nYou Forgot to enter an email address.';
			intValidate = intValidate + 1;
		}*/	
		if (intValidate == 0) {
			document.getElementById('frmGeneralEnquiry').submit();
		}
		else {
			alert(strValidateMessage);
		}
	}
	
	