// JavaScript Document
<!--
	//Abre janela central de noticias e links
	b_versao = parseInt(navigator.appVersion);
	var win = null;
	
	function New_Window(mypage,myname,w,h,scroll,size) {
		if (b_versao >= 4) {
			LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
			TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
		} else {
			LeftPosition = 100
			TopPosition = 100
		}
		settings = 'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resizable='+size+''
		win = window.open(mypage,myname,settings)
		if(win.window.focus) {
			win.window.focus();
		}
	}
// -->	
