// JavaScript Document

function clearText(thefield)
{
if (thefield.defaultValue==thefield.value)
	thefield.value = "";
}
function searchColor(thefield)
{	
thefield.style.color = "#474747";
}
function btnOver(thefield) 
{
	thefield.style.backgroundColor = "#648aa0";	
}
function btnOut(thefield) 
{
	thefield.style.background = "none";
}

