function uresmezo(e, szov)
{
	/*
	Mezohoz csatolas: 
	    onfocus="uresmezo(event, 'alapszoveg')" onblur="uresmezo(event, 'alapszoveg')"
	*/
	if(e.type == 'focus')
	{
		if(_TARG(e).value == szov)
		{
			_TARG(e).value = '';
			_TARG(e).style.color = '#444';
			_TARG(e).style.fontStyle = 'normal';
		}
	}
	if(e.type == 'blur')
	{
		if(_TARG(e).value == '')
		{
			_TARG(e).style.color = '#888';
			_TARG(e).style.fontStyle = 'italic';
			_TARG(e).value = szov;
		}
	}
}
