onClick = function (el, text)
{
	if(el.value == text)
		el.value = "";
}

onBlur = function (el, text)
{
	if(el.value == "")
		el.value = text;
}
