  function flipImage(idko,imgState) {
     try {
	var stateTrans;
	if (imgState=='on') stateTrans='';
	if (imgState=='off') stateTrans='Inac';
	document.all(idko).src="./images/icos/"+idko+stateTrans+".gif";
	if (imgState=='on')
		document.all("anchor").src="./images/icos/"+idko+stateTrans+"Big.gif";
	else
		document.all("anchor").src="images/icos/blank.gif";
     }
     catch(e) {}
  }


  function bDotted(idko) {
     try {
	idko.style.border="dotted 1px #456768";
     }
     catch(e) {}
  }

  function bSolid(idko) {
     try {
	idko.style.border="solid 1px";
     }
     catch(e) {}
  }
