pro gatorplot_config print,'Select default browse directory (or click cancel for none)' defdir=dialog_pickfile(/directory) varsdir='' read,'Enter directory to save gatorplotvars.dat in? ',varsdir if varsdir eq '' then varsdir='$HOME' gphelp='' read,'Enter location of gatorplot.help file? ',gphelp if gphelp eq '' then gphelp='$IDL_DIR/contrib/astroLib/text/gatorplot.help' gpweb='' read,'Enter the command to start your web browser of choice? ',gpweb if gpweb eq '' then gpweb='TEXT' openw,1,'$HOME/.gatorplot' printf,1,'BROWSE: '+defdir printf,1,'VARS: '+varsdir printf,1,'HELP: '+gphelp printf,1,'WEB: '+gpweb close,1 end