// JavaScript Document

function clearText(thefield)
{
if (thefield.defaultValue==thefield.value)
	thefield.value = "";
	thefield.style.backgroundColor = "#ffffff";
	thefield.style.border = "2px solid #999999";
}
function inputFocus(thefield)
{
	thefield.style.backgroundColor = "#ffffff";
	thefield.style.border = "2px solid #999999";
}

function inputBlur(thefield)
{
	thefield.style.backgroundColor = "";
	thefield.style.border = "2px solid #cccccc";
}
function searchColor(thefield)
{	
thefield.style.color = "#474747";
}
function btnOver(thefield) 
{
	thefield.style.backgroundColor = "#b32b2b";	
	thefield.style.border = "2px solid #7e1616";
}
function btnOut(thefield) 
{
	thefield.style.backgroundColor = "#0086ff";
	thefield.style.border = "2px solid #0063a0";
}
