function AbreJanela(url, height, width) {
	newwindow=window.open(url,'manifesto','height='+height+',width='+width+',scrollbars=yes,resizable=no,menubar=no');
	if (window.focus) {newwindow.focus()}
	return false;
}
