<!--
var NameText = "Full Name >";
var MailText = "E-mail Address >";
var EnquiryText = "Comments only >";

if(document.quick.name.value.length == 0) {
	document.quick.name.value = NameText;
	}
if(document.quick.email.value.length == 0) {
	document.quick.email.value = MailText;
	}
if(document.quick.enquiry.value.length == 0) {
	document.quick.enquiry.value = EnquiryText;
	}

function ClearIfAppropriate1() {
if(document.quick.name.value == NameText) {
	document.quick.name.value = "";
	}
}

function ClearIfAppropriate2() {
if(document.quick.email.value == MailText) {
	document.quick.email.value = "";
	}
}

function ClearIfAppropriate3() {
if(document.quick.enquiry.value == EnquiryText) {
	document.quick.enquiry.value = "";
	}
}


//-->