// JavaScript Document

/*abrir nova janela com parāmetros*/
function OpenWindow(url,w,h) {
  window.open(url,"_blank","toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=yes, resizable=no, copyhistory=no, width="+w+", height="+h);
}