function hideshit(ime) {
	if (document.getElementById) {
		var target;
		target=document.getElementById(ime);
		if (target != null ) {
			target.style.display="none";
		}
	}
	
	return null;
	
}

function unhideshit(ime) {
	if (document.getElementById) {
		var target;
		target=document.getElementById(ime);
		if (target != null ) {
			target.style.display="block";
		}
	}
	
	return null;
	
}
