// JavaScript Document
function MM_openBrWindow(theURL,winName,features) { //v2.0
		  window.open(theURL,winName,features);
		}
		
		function detectaBrowser() {
		if (navigator.appName.toLowerCase().indexOf('microsoft internet explorer') > -1)
		return('ie');
		else
		if (navigator.appName.toLowerCase().indexOf('netscape') > -1)
		return('firefox');
		}

		function ajuste(){
			browser = detectaBrowser();
		
		if (browser == 'firefox') {
		document.getElementById('rightbar').style.height= document.getElementById('wrap').offsetHeight-110+'px'
		} else {
		if (browser == 'ie') {
		document.getElementById('rightbar').style.height= document.getElementById('wrap').offsetHeight-110
		}}}
		
janela = null;
   function abre(page, largura, altura) {
  		W = largura;
		H = altura;			janela=window.open(page,"Internas","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=no,width="+W+",height="+H+"top=30,left=30")
}