function MaisImg(URL) {
  window.open(URL,'JanelaImagens','width=550,height=500,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,copyhistory=no,maximized=no');
}

function ProdInfo(Show,B1,B2,B3) {

  if(navigator.appName == "Microsoft Internet Explorer") {

    if(document.all(Show).style.display == 'none')
      document.all(Show).style.display = 'block';
      document.all(B1).style.display = 'none';
      document.all(B2).style.display = 'none';
      document.all(B3).style.display = 'none';
   
   }

  else if(navigator.appName == "Netscape") {

    if(document.getElementById(Show).style.display == 'none')
      document.getElementById(Show).style.display = 'block';
      document.getElementById(B1).style.display = 'none';
      document.getElementById(B2).style.display = 'none';
      document.getElementById(B3).style.display = 'none';
    
  }
}

function Print_Page(vUrl)
{
  window.open(vUrl,'JanelaConsulta','width=630,height=600,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,maximized=no');
}