#!/bin/bash

G1=G
G2=("Mount Data CD Image")

function mount_img {

    select_inputfile

    if [ "$YNRETVAL" = "0" ]; then

	exec_command "mount $INFILE -r -t iso9660 -o loop $Z"
	ls -A $Z > $TXTTMP
	textbox  $TXTTMP
	umount $Z

    fi
}
