function clearDefaultValue(textBox)
{
	if(textBox.defaultValue==textBox.value) 
		textBox.value = "";
}

function restoreDefaultValue(textBox)
{
	if(textBox.value == "")
		textBox.value = textBox.defaultValue;
}
