//Clear Textfield
function clickclear(thisfield, defaulttext) {
	if (thisfield.value == defaulttext) {
		thisfield.value = "";
	}
}
function clickrecall(thisfield, defaulttext) {
	if (thisfield.value == "") {
		thisfield.value = defaulttext;
	}
}

//Autodate
today = new Date();
copyText = ""

copyText += "&#169; 2001 - " + (today.getFullYear()) + " JPAssociates, Inc. All right reserved."

