function defaultVal(elm, evt, val)
{
	if (evt=='focus') { if (elm.value==val) { elm.value=''; } }
	else { if (elm.value=='') { elm.value=val; } }
}
