// JavaScript Document

function AbreJanela( top, left, width, height, url, name, setresize, setscroll ) {
   name = window.open( url, name, "top=" + top + ", left=" + left + ",resizable="+ setresize+",location=no,toolbar=no,status=no,width="+width+",height="+height+",scrollbars="+ setscroll);
   if (name && name.open) { name.focus(); }
}


