// JavaScript Document

function abrir(URL) {

   var width = 640;
   var height = 500;

   var left = 10;
   var top = 10;

   window.open(URL,'teste', 'width='+width+', height='+height+', top='+top+', left='+left+', scrollbars=yes, status=no, toolbar=no, location=no, directories=no, menubar=no, resizable=no, fullscreen=no');

}

function pop_up(theURL,l,r,t,largura,altura)
{
       window.open(theURL,'popup',
       'left='+l+',right='+r+',top='+t+
       ',toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no,'+
       'width='+largura+',height='+altura);
}

function pop_up_scr(theURL,l,r,t,largura,altura)
{
       window.open(theURL,'popup',
       'left='+l+',right='+r+',top='+t+
       ',toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no,'+
       'width='+largura+',height='+altura);
}

