function Abrir(URL,Nome,Largura,Altura){
  window.open(URL, Nome, "toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=no,resizable=no,width="+Largura+",height="+Altura)
}

function mao(src) {

src.style.cursor  = 'hand';

}

function mostra_desc(id) {
  if (document.getElementById(''+ id +'').style.visibility == 'visible') {
      document.getElementById(''+ id +'').style.visibility = 'hidden';
	    document.getElementById(''+ id +'').style.position = 'absolute';
  } else {
    document.getElementById(''+ id +'').style.visibility = 'visible';
	  document.getElementById(''+ id +'').style.position = 'relative';
  }
}

function mostra(id) {
    document.getElementById(''+ id +'').style.visibility = 'visible';
	  document.getElementById(''+ id +'').style.position = 'relative';
}

function esconde(id) {
    document.getElementById(''+ id +'').style.visibility = 'hidden';
    document.getElementById(''+ id +'').style.position = 'absolute';
}