
function pop_up(n,x,y,target,texto_a_escrever,novos_parametros,atributos){
	if(target==null){target="pop_up";}
	x=(x==null ? 750 : x);
	y=(y==null ? 600 : y);
    esquerda  = ( screen.width  ) ? ( screen.width  - parseInt( x )  ) / 2 : 0;
    topo	  = ( screen.height ) ? ( screen.height - parseInt( y ) ) / 2 : 0; 
	
	// incluir parametro venda.

	if (atributos == null)
		atributos = 1;

	try{
		if (novos_parametros==null){
			var desktop = window.open(n, target, 'width='+ x + ',height='+y +  ',left='+ esquerda + ', top=' + topo + ',toolbar=no,location=no,status=yes,directories=no,menubar=no,scrollbars='+atributos+',resizable=yes,copyhistory=no');
		}else{
			var desktop = window.open(n, target, 'width='+ x + ',height='+y +  ',left='+ esquerda + ', top=' + topo + ','+novos_parametros);
		}
		if (texto_a_escrever!=null){
			desktop.document.write(texto_a_escrever);
		}
	}catch(e){
		alert("Não foi possível abrir a tela porque seu browser tem um programa chamado ANTI POP-UP. Por favor queira desativar para que o STIMED funcione normalmente.");
	}
	return false;
}
