function hide_help(item)
{
	if (item.value == '' || item.value==item.tag )
	{ 
		item.value='';
		item.focus();
	}
}

function show_help(item)
{
	if (item.value == '')
	{ 
		item.value=item.tag;  
	}
}

function popUpWindow(url)
{
	window.open(url, 'Prozor', 'width=900,height=600,resizable=1,scrollbars=1');
}

