function getobj(sId){
	return document.getElementById(sId);
}
function tooltip(sText){
	Tip(sText,WIDTH,0);
}
function hide(sId){
	getobj(sId).style.display="none";
}
function show(sId){
	getobj(sId).style.display="inline";
}
function arraysearch(aArray,gValore){
	var i;
	for ( i=0 ; i<aArray.length ; i++ )
		if (aArray[i] == gValore)
			return i;
	return -1;
}
