function sb_focus(box)
{
	box.style.background = "none";
}

function sb_blur(box)
{
	if( (box.value == null) || (box.value == "") )
		box.style.background = "";
}
