/**
 * mySWFmovie v1.0: Javascript function that works with SWFObject.js and is used to build the object.
 * Derived by www.webado.net  from the original by Geoff Stearns.
 *
 * SWFObject is (c) 2006 Geoff Stearns and is released under the MIT License:
 * http://www.opensource.org/licenses/mit-license.php
 *
 * **SWFObject is the SWF embed script formerly known as FlashObject. The name was changed for
 *   legal reasons.
 *
 * For all usage credits must remain intact.
 */


function mySWFmovie (swfid,swf,id,width,height,version,bgcolor) {
var fo = new SWFObject(swf, id, width, height, version, bgcolor);
  fo.addVariable("variable", "varvalue"); 
  fo.write(swfid); 
}