#! /bin/csh -f 

#set variable
	set nors = $1
	set fn = $2

#find directory 
	if ( $fn != "" ) then 
		cd $fn  
  	endif

#execution
	if ( -e f09 && -e f39 ) then

		if ( $nors == "n" || $nors == "N" ) then
			time $dvdir/object/npopanl.exe
		else if ($nors == "s" || $nors == "S" ) then
			time $dvdir/object/spopanl.exe
		else if ($nors == "w" || $nors == "W" ) then
			time $dvdir/object/wpopanl.exe
		else if ($nors == "u" || $nors == "U" ) then
			time $dvdir/object/upopanl.exe
		else if ($nors == "g" || $nors == "G" ) then
			time $dvdir/object/gpopanl.exe
		else if ($nors == "h" || $nors == "H" ) then
			time $dvdir/object/hpopanl.exe
		else if ($nors == "i" || $nors == "I" ) then
			time $dvdir/object/ipopanl.exe
		else if ($nors == "j" || $nors == "J" ) then
			time $dvdir/object/jpopanl.exe
		else 
			echo  "popanl [n/s/w/u/g/h/i/j] (filename)"
			exit
		endif

	else
		echo  " f09 or f39  not exist "
		exit
	endif
