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