// JavaScript Document

function abrir(URL) {

   var width = 470;
   var height = 600;

   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 abrir1(URL) {

   var width = 470;
   var height = 250;

   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=yes,resizable=no,'+
       'width='+largura+',height='+altura);
}

function abre_site2(foo){



	//eval("blank.location.href='" + foo + "'");



	window.open(foo);



	/*



	window.open("sis_link.php?url=" + foo);



	window.location.reload();



	*/



}

