diff --git a/dottes.html.tune b/dottes.html.tune
index 2727f57..4079b56 100644
--- a/dottes.html.tune
+++ b/dottes.html.tune
@@ -61,10 +61,14 @@
diff --git a/makeWeb.sh b/makeWeb.sh
index 6e26ece..dec8e60 100755
--- a/makeWeb.sh
+++ b/makeWeb.sh
@@ -27,6 +27,7 @@ output=index.html
tunelist=tunelist.html
booke=$1
masterbooke=$2
+masterwebdir=$dir/web/$2
title=$booke
instrument=$3
@@ -63,7 +64,7 @@ done
# to be already generated.
cp $1-*.pdf $webdir
-# Now, for each tune, make the tune graphic and sound.
+# Now, for each tune, make the tune page.
find $bookedir -name "*.abc" | sort |
while read filename
do
@@ -94,6 +95,12 @@ find $bookedir -name "*.abc" | sort |
# Copy the ABC into the web.
cp $filename $webdir
+ # If we are not the master booke, link the mp3 in from the
+ # master page in a desperate attempt to make IE8 work.
+ if [ "$booke" != "$masterbooke" ]; then
+ ln -s -r ${masterwebdir}/${name}.mp3 ${webdir}
+ fi
+
# Generate the tune web page.
tunepage=${name}.html