// JavaScript Document
self.focus();
//
function abrePop(url, id, ww, hh, sc) {
	var aw = screen.availWidth;
	var ah = screen.availHeight;
	/*
	if (aw < 1000) {
		sc = "yes";
	} else {
		sc = "no";
		aw = 1014;
		ah = 678;
	}
	*/
	var lf = (screen.availWidth - aw) / 2;
	var tp = (screen.availHeight - ah) / 2;
	var win=window.open(url,id,"toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars="+sc+",resizable=no,width="+ww+",height="+hh+",left="+lf+",top="+tp+"");
	win.focus();
}
//
function adjustBrowser() {
	window.moveTo(0,0);
	window.resizeTo(screen.availWidth, screen.availHeight);
	window.offscreenBuffering = "true";
	return false;
}
function semErro() {
	return true;
}
function Nomepg(nome) {
	window.defaultStatus = nome;
	//setTimeout("Zwei()",200);
}
//
//
window.onerror = semErro;
// -->