function fnMostrarModal(titulo, alto, ancho, direccion)
	{   
        var options = {
		    title: titulo,
		    width: ancho,
		    height: alto,
		    url: direccion,
		    allowMaximize: false,
		    showClose: true
		    };        
        
        SP.UI.ModalDialog.showModalDialog(options); 
	}

