function PlayMp3(DivID,Mp3,Width,Height)

{

    var divTag = document.getElementById(DivID);

 

//divTag.innerHTML = "<object classid='clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B' CODEBASE='http://www.apple.com/qtactivex/qtplugin.cab'><param name='SRC' value = '" + Movie + "'><param name='autostart' value='-1'><embed src = '" + Movie + "' width ='" + Width + "' Height = '" + Height +" '></embed></object>"; // IE has trouble with this, but it works in FireFox

divTag.innerHTML = "<embed src = '" + Mp3 + "' width ='" + Width + "' Height = '" + Height +" ' AUTOPLAY='FALSE' CONTROLLER='TRUE'></embed>"; // WORKS

//divTag.innerHTML = "<EMBED SRC=\"700WLW.mp3\" AUTOPLAY=\"true\" ShowControls=\"1\" CONTROLLER=\"true\" PLUGINSPAGE=\"http://www.apple.com/quicktime/download/\" width=\"120\" height=\"12\">";

}

//document.write('<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" WIDTH="490"HEIGHT="340" CODEBASE="http://www.apple.com/qtactivex/qtplugin.cab">');
//document.write('<param name="SRC" value="http://productions.jillett.com/PupaHatching.mov">');
//document.write('<param name="autoplay" value="1">');
//document.write('<param name="controller" value="1">');
//document.write('<EMBED SRC="http://productions.jillett.com/PupaHatching.mov" WIDTH="490" HEIGHT="340" AUTOPLAY="true" CONTROLLER="true" PLUGINSPAGE="http://www.apple.com/quicktime/download/">');
//document.write('</EMBED>');
//document.write('</object>');

