// JavaScript Document


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

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


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

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


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

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