function ctrlPopup(endereco, nome, parametro, largura, altura, top, left, scroll, fullscreen){
	var left_real = 0;
	var top_real = 0;
	var url;
	var parametros;
	var mine;
	
	if (left != ""){
	  left_real = ((screen.width * left)/100) - (Math.round(largura/2));
	  top_real = "250";
	}
	if(scroll == true){
	  scrollx = "yes";
	}
	else{
	  scrollx = "no";
	}
	if(fullscreen){
	  largura = screen.width;
	  altura = screen.height;
	}
		
	url = endereco + '?' + parametro;
	parametros = '"resizable=no, scrollbars=' + scrollx + ', width=' + largura+', height=' + altura + ', left=' + left_real + ', top=' + top_real + '"';
	mine = window.open(url, nome, parametros);
  if(!mine){
    alert('Por favor, desative o bloqueador de popup para prosseguir e tente novamente.');
	}
}