/**
 * HyperObjects Flash utils Addons to 
 *
 * SWFObject is (c) 2007 Geoff Stearns and is released under the MIT License:
 * http://www.opensource.org/licenses/mit-license.php
 *
 */
function sendEvent(obj, typ,prm){
  GetObject(obj).sendEvent(typ,prm);
};
// This is a javascript handler for the player and is always needed.
function GetObject(obj) {
  if(navigator.appName.indexOf("Microsoft") != -1) {
    return window[obj];
  }
  else{
    return document[obj];
  }
};	

