// JavaScript Document


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

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


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

function clickrecall(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 clickclear(thisfield, Comment) {
	if (thisfield.value == Comment) {
		thisfield.value = "";
	}
}

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