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