function TextBoxFocus(textBox, text)
{
	if(textBox.value == text)
	{
		textBox.value = '';
	}
}

function TextBoxBlur(textBox, text)
{
	if(textBox.value == '')
	{
		textBox.value = text;
	}
}