function getE(id)
	{
		return document.getElementById(id);
	}
function setT(f, t)
	{
		setTimeout(f, t);
	}
function abreJanela(uri, nome, w, h)
	{
		window.open(uri, nome, 'width='+w+',height='+h+',dependent=no,scrolling=no,scrollbars=no,toolbar=no,location=no,status=no,menubar=no');
	}
function abreImg(uri)
	{
		abreJanela(uri, 'ABREIMG', 620, 420);
	}
function abreImgG(uri)
	{
		abreJanela(uri, 'ABREIMG', 660, 500);
	}
function abaR(id)
	{
		if(getE(id).style.display == 'none')
			getE(id).style.display = '';
		else
			getE(id).style.display = 'none';
	}
function goTo(uri)
	{
		window.location.assign(uri);
	}

function abrir(URL) {
   var width = 170;
   var height = 20;
   var left = 99;
   var top = 99;
   window.open(URL,'no', 'width='+width+', height='+height+', top='+top+', left='+left+', scrollbars=no, status=no, toolbar=no, location=no, directories=no, menubar=no, resizable=no, fullscreen=no');
}