function popupUC(pg,nome,w,h){//popUp Unico Central
	var x; 	var y;
	x = (screen.width-w)/2;	y = (screen.height-h)/2;
window.open(pg,nome,'scrollbars=no,toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=yes,width='+w+',height='+h+',left='+x+',top='+y+'');
}

// Pop up com Scroll
function popupUCS(pg,nome,w,h){//popUp Unico Central
	var x; 	var y;
	x = (screen.width-w)/2;	y = (screen.height-h)/2;
window.open(pg,nome,'scrollbars=yes,toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=yes,width='+w+',height='+h+',left='+x+',top='+y+'');
}
