// Java Document

function obrirFPDF(desti) {

  fen1=window.open('','finestraPDF','screenX=10,screenY=10,left=10,top=10,width=700,height=600,menubar=no,resizable=yes,titlebar=no,location=no,toolbar=no,alwaysRaised=no,status=no,scrollbars=yes,fullscreen=0');
  fen1.document.open();
  fen1.location.href=desti;
  fen1.focus();
}

function obrirFinestra(desti) {

  fen1=window.open('','finestra','screenX=10,screenY=10,left=10,top=10,width=700,height=600,menubar=no,resizable=yes,titlebar=no,location=no,toolbar=yes,alwaysRaised=no,status=no,scrollbars=yes,fullscreen=0');
  fen1.document.open();
  fen1.location.href=desti;
  fen1.focus();
}


function resaltar(id) {
  id.style.backgroundColor="#ffff99";
}

function retornar(id) {
  id.style.backgroundColor="";
}

function marcar(id) {
  id.style.backgroundColor="#ffcc99";
}

function desmarcar(id) {
  id.style.backgroundColor="";
}

