var DHTML = (document.getElementById || document.all || document.layers);
var submit="si";
var elimina="no";
 
function getObj(name)
{
  if (document.getElementById)
  {
	//Supportato da: Netscape 6, Explorer 5+, Opera 5+, Konqueror, Safari, iCab, Ice
  	this.obj = document.getElementById(name);  	
	if (this.obj != null) this.style = this.obj.style;	
  }
  else if (document.all)
  {
	//Supportato da: Explorer 4+, Opera 6+, iCab, Ice, Omniweb
	this.obj = document.all[name];
	if (this.obj != null) this.style = this.obj.style;
  }
  else if (document.layers)
  {
	//Supportato da: Netscape 4, Ice, Escape, Omniweb
   	this.obj = document.layers[name];
   	if (this.obj != null) this.style = this.obj;
  }
}