function inpFocus(obj, wert)
{
	if(obj.value == wert) obj.value = '';
}

function inpBlur(obj, wert)
{
	if(obj.value == '') obj.value = wert;
}