/*///////////////////////////////////////////////////////////////////////////
//abre popup                                                                /
//mandar o esquerda e o topo '' para cetralizar                             /
//cP('link',100,100,'no','nomejanela')                               /
///////////////////////////////////////////////////////////////////////////*/
function cP(url,largura,altura,scrols,nome,esquerda,topo){
	if(topo.length == 0){
		var topo = (screen.height - altura) / 2;
	};
	if(esquerda.length == 0){
		var esquerda = (screen.width - largura) / 2;
	};
	var nvJanela = window.open(url,nome,'width=' + largura + ', height=' + altura + ', scrollbars=' + scrols + ', toolbar=no, location=no, status=no, menubar=no, resizable=no, left=' + esquerda + ', top=' + topo);
	return nvJanela;
};
