// JavaScript Document
function clearField(thefield)
{
	if (thefield.defaultValue==thefield.value) { 
		thefield.value = "";
	}
	thefield.className = "textFieldAlt";
}
function refillField(thefield, thevalue)
{
	if (thefield.value == "" || thefield.value == thevalue) { 
		thefield.value = thevalue;
	}
	thefield.className = "textField";
}