function changeText(thefield,thevalue){
if (thefield.defaultValue==thefield.value)
	{
		thefield.value = "";
	}
else if (thefield.value=="")
	{
		thefield.value = thevalue;
	}
} 

function backColor(thefield,thecolor){
	thefield.style.backgroundColor = thecolor;
} 