// JavaScript Document


function clickclear(thisfield, fullname) {
	if (thisfield.value == fullname) {
		thisfield.value = "";
	}
}

function clickrecall(thisfield, fullname) {
	if (thisfield.value == "") {
		thisfield.value = fullname;
	}
}




function clickclear2(thisfield, email) {
	if (thisfield.value == email) {
		thisfield.value = "";
	}
}

function clickrecall2(thisfield, email) {
	if (thisfield.value == "") {
		thisfield.value = email;
	}
}



function clickclear(thisfield, Subject) {
	if (thisfield.value == Subject) {
		thisfield.value = "";
	}
}

function clickrecall(thisfield, Subject) {
	if (thisfield.value == "") {
		thisfield.value = Subject;
	}
}




function clickclear2(thisfield, Telephone) {
	if (thisfield.value == Telephone) {
		thisfield.value = "";
	}
}

function clickrecall2(thisfield, Telephone) {
	if (thisfield.value == "") {
		thisfield.value = Telephone;
	}
}




function clickclear(thisfield, Site) {
	if (thisfield.value == Site) {
		thisfield.value = "";
	}
}

function clickrecall(thisfield, Site) {
	if (thisfield.value == "") {
		thisfield.value = Site;
	}
}




function clickclear2(thisfield, Query) {
	if (thisfield.value == Query) {
		thisfield.value = "";
	}
}

function clickrecall2(thisfield, Query) {
	if (thisfield.value == "") {
		thisfield.value = Query;
	}
}