Index: /issm/trunk-jpl/scripts/issmconfiguration.sh
===================================================================
--- /issm/trunk-jpl/scripts/issmconfiguration.sh	(revision 14606)
+++ /issm/trunk-jpl/scripts/issmconfiguration.sh	(revision 14607)
@@ -11,21 +11,35 @@
 	LIST=`ls`
 	
-	if [[  $# == "0" ]]; then 
-		COUNT=0;
-		for STEP in $LIST
-		do
-			let COUNT=$COUNT+1
-			printf '%3i: %s\n' $COUNT $STEP
-		done
+	if test -d "$JPL_SVN/usr/$USER/configs"; then
+		cd $JPL_SVN/usr/$USER/configs 
+		LIST2=`ls`
+	fi
+	
+	#print choices
+	COUNT=0;
+	for STEP in $LIST
+	do
+		let COUNT=$COUNT+1
+		printf '%3i: %s\n' $COUNT $STEP
+	done
+	for STEP in $LIST2
+	do
+		let COUNT=$COUNT+1
+		printf '%3i: %s\n' $COUNT $STEP
+	done
 
-		echo -n "Configuration choice: "
-		read choice 
-	else
-		choice=$1
-	fi
+	echo -n "Configuration choice: "
+	read choice 
 
 	#Now go backto the list and retrieve the name of the configuration file: 
 	COUNT=0;
 	for STEP in $LIST
+	do
+		let COUNT=$COUNT+1
+		if [[ $COUNT == $choice ]]; then
+			configurename=$STEP
+		fi
+	done
+	for STEP in $LIST2
 	do
 		let COUNT=$COUNT+1
