var temp=0;
function hide(textbox) {
	temp = textbox.value;	
	textbox.value = "";
}
function show(textbox) {
	if (textbox.value == "")
		textbox.value = temp;
}

function hover(button, hover) {
	if (!document.all)
		return;
	if (hover)
		button.className = "clsHover";
	else
		button.className = "clsButton";
}
