function IEFoo(Movie,Width,Height)
 {
     var movie2 = "";
//     alert(window.location.search);
	var start=location.search.indexOf("?Movie=");
//     alert(start);
	if (start<0) start=location.search.indexOf("&Movie=");
//     alert(start);
 	if (start<0) {
          query = "";
          }
     else {
           var query = window.location.search;
     }


  // Skip the leading ?, which should always be there,
  // but be careful anyway

if (query.length !=0) {
     if (query.substring(0, 1) == '?') {
         query = query.substring(1);
         }
     var data = query.split(',');
     var len = data.length;
     for (i = 0; (i < data.length); i++) {
          data[i] = unescape(data[i]);
          // Now add each element of data to movie
          movie2 +=  data[i];
          }

     // for (i = 0; (i < data.length); i++) {
     //    document.write("<li>" + data[i] + "</li>\n");
     //  }
     //Now get rid of the "Movie="  in the data

     movie2 =  movie2.substring(6,movie2.length);
     //    document.write("<li>" + movie2 + "</li>\n");

     //   alert(movie2);

     //    document.write("<li>" + Movie + "</li>\n");

     //   alert(MYMovie.substring(0,MyMovie.lenght));
}

   document.write('<p class="Centered">');
   document.write('<object\n');
   document.write('classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"\n');
   document.write('codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,79,0"\n');
   document.write('id="P3Flash"\n');
   document.write('width="'+Width+'" height="'+Height+'">\n');
   document.write('<param name="movie" value="' + Movie + movie2 + '">\n');
   document.write('<param name="quality" value="high">\n');
   document.write('<param name="allowscriptaccess" value="samedomain">\n');
   document.write('<embed\n');
   document.write('type="application/x-shockwave-flash"\n');
   document.write('pluginspage="http://www.macromedia.com/go/getflashplayer"\n');
   document.write('name="P3Flash"\n');
   document.write('width="'+Width+'" height="'+Height+'"\n');
   document.write('src="'+ Movie + movie2 + '"\n');
   document.write('quality="high"\n');
   document.write('swliveconnect="true"');
   document.write('allowscriptaccess="samedomain">\n');
   document.write('<noembed>\n');
   document.write('</noembed>\n');
   document.write('</embed>\n');
   document.write('</object>\n');
   document.write('</p>\n');

}