function AX_openWin(url,nome,width,height,left,top,centra,scroll,resize,depend){
	if (centra == 1){
		var left = (screen.width-width)/2;
		var top = (screen.height-height)/2;
	}
	var dimen = 'width='+width+',height='+height+',left='+left+',top='+top;
	var propa = 'menubar=no,toolbar=no,location=no,directories=no,status=no';
	var propb = 'scrollbars='+scroll+',resizable='+resize+',dependent='+depend;
	var newWin = window.open(url,nome,dimen+','+propa+','+propb);
	newWin.focus();
}
