Dear Joe,
Didi you mean download the file instead of automatically play in their
default media player? There are many ways to force a download dialog
prompt, but here is a very simple method:
----------------------------
<html>
<body>
<script>
function forcedownload(x){
myDownloadWindow =
window.open(x,'','left=10000,screenX=10000');
myDownloadWindow.document.execCommand('SaveAs','null',x);
myDownloadWindow.close();
}
</script>
<a href=javascript:forcedownload("whatever.mp3");>Download this
song</a>
</body>
</html>