#!/bin/bash

L1=L
L2=("MOUNT FLOPPY-IMAGE (HD)")

function mount_img_hd {

    inputbox "Specify image to mount"

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

	IMAGE=$INPUT
	mount $IMAGE -o loop $Z
	cd $Z
	exec_command "ls ./"
        cd
	umount $IMAGE

    fi

}
