function loadFlash( id, w, h, wmode ) {
  var currPath = "http://www.riccellienterprises.com/";
  var flashBox = $( "flashbox" );
  if ( ! flashBox ) {
    return;
  }

  if ( !Prototype.Browser.IE ) {
    var obj = new Element(
      "object",
      {
        type: "application/x-shockwave-flash",
        data: currPath + "flash/" + id + ".swf",
        width: w,
        height: h
      }
    );
    var param1 = new Element( "param", { name: "loop", value: "false" } );
    var param2 = new Element( "param", { name: "wmode", value: wmode } );
    var param3 = new Element(
      "param",
      {
        name: "movie",
        value: currPath + "flash/" + id + ".swf"
      }
    );
    obj.insert( param1 );
    obj.insert( param2 );
    obj.insert( param3 );
  } else {
    var obj = new Element(
      "embed",
      {
        type: "application/x-shockwave-flash",
        pluginspage: "http://www.macromedia.com/go/getflashplayer",
        src: currPath + "flash/" + id + ".swf",
        width: w,
        height: h,
        name: "movie"
      }
    );
  }
  flashBox.update();
  flashBox.insert( obj );
}