<!-- Begin
//

var UniqueID = 314 // Make each link open in a new window.
var newWinOffset = 0 // Position of first pop-up
var h=190
function PlayerOpen(soundfiledesc,soundfilepath) {
if (soundfilepath.indexOf('.mp3') != -1) {h=190} else {h=160};
PlayWin = window.open('',UniqueID,'width=340,height='+h+',top=' + newWinOffset +',left=0,resizable=0,scrollbars=0,titlebar=0,toolbar=0,menubar=0,status=0,directories=0,personalbar=0');
PlayWin.focus(); 
var winContent = "<HTML><HEAD><TITLE>Jase's Books - " + soundfiledesc + "</TITLE></HEAD><BODY bgcolor='#EEEAD9' link=red background='http://www.jasesbooks.com.au/scroll/crumb.gif'>";
winContent += "<B style='font-family: Sherwood, Palatino, Bookman Old Style, Bookman, Times, Times New Roman, serif; font-size: 18px; color: #800000; line-height:1.5'>" + soundfiledesc + "</B>";
winContent += "<OBJECT width='320' height='42'>";
winContent += "<param name='SRC' value='" +  soundfilepath + "'>";
winContent += "<param name='AUTOPLAY' VALUE='true'>";
winContent += "<param name='CONTROLLER' VALUE='true'>";
winContent += "<param name='BGCOLOR' VALUE='#EEEAD9'>";
winContent += "<EMBED SRC='" + soundfilepath + "' TYPE='audio/mpeg' AUTOSTART='TRUE' LOOP='FALSE' WIDTH='320' HEIGHT='42' CONTROLLER='TRUE' BGCOLOR='#EEEAD9'></EMBED>";
winContent += "</OBJECT>";

if (soundfilepath.indexOf('.mp3') != -1) winContent += "<p style='font-size:12px;font-family:Arial,Verdana,sans-serif;text-align:center'><a style='color: #800000;' href='"+soundfilepath+"'>Download this file</a> <SPAN style='font-size:11px'>(right-click or Option-click)</SPAN></p>";

winContent += "<FORM><DIV align='center'><INPUT type='button' value='Close this window' onclick='javascript:window.close();'></DIV></FORM>";
winContent += "</BODY></HTML>";
PlayWin.document.write(winContent);
PlayWin.document.close(); // "Finalises" new window
UniqueID = UniqueID + 1
// newWinOffset = newWinOffset + 20 // subsequent pop-ups will be this many pixels lower.
}

// End -->