
function btbInputFocus(textbox, hideBackgroundClass) {

	textbox.className = hideBackgroundClass;
}

function btbInputBlur(textbox, showBackgroundClass, hideBackgroundClass) {

	if (textbox.value == "")
		textbox.className =  showBackgroundClass;
	else
	    textbox.className = hideBackgroundClass;
}