function RunMovie(w,h,sizefolder,vid)
{
    document.write('<object width="' +  w + '" height="' + h + '" codebase="http://www.apple.com/qtactivex/qtplugin.cab">\n');
    document.write('<param name="src" value="mp4' + sizefolder + '/' + vid  + '.mp4" />\n');
    document.write('<param name="autoplay" value="true" />\n');
    document.write('<param name="controller" value="true" />\n');
    document.write('<param name="loop" value="false" />\n');
    document.write('<param name="name" value="' + vid  + '" />\n');
    document.write('<param name="bgcolor" value="#000000" />\n');
    document.write('<embed src="mp4' +  sizefolder  + '/' +  vid  + '.mp4" width="' +  w + '" height="' +  h + '" autoplay="true" type="video/quicktime" controller="true" pluginspage="http://www.apple.com/quicktime/download/" loop="false" name="' +  vid + '"></embed>\n');
    document.write('</object>\n');

}

function RunMP3(vid)
{
 //     document.write('<EMBED src="MP3/' + vid + '.m3u" autostart=true hidden=true>');
  document.write('<embed src= "http://www.odeo.com/flash/audio_player_standard_gray.swf" autoplay="false" quality="high" width="300" height="52" allowScriptAccess="always" wmode="transparent"  type="application/x-shockwave-flash" flashvars= "valid_sample_rate=true&external_url=http://www.tonyjaffe.com/MP3/' + vid + '.mp3" pluginspage="http://www.macromedia.com/go/getflashplayer" /></embed>\n');

}