function clear_input( id )
{ 
	if (document.getElementById( id ) == null) return false;	
	if (!confirm('Czy napewno usun±æ ?')) return false;
	document.getElementById( id ).value = '';
	return false;
}
	
function _get( id ){
	return document.getElementById( id );
}
function show( id ){
	_get( id ).style.display = '';
}
function hide( id ){
	_get( id ).style.display = 'none';
}
function zmien( id ){
	var obj = _get(id);
	var stan = obj.style.display;
	(stan=='none')? show(id) : hide(id) ;
}

