function createMnetImageRotator(prefix, div, w, h)
{
  var params = {
    file: "/ImageListXML.aspx?ImagePrefix="+prefix+"&size=large",
    transition: "fade",
    shownavigation: "false",
    shuffle: "false",
    autostart: "true",
    usefullscreen: "false",
    width: w,
    height: h
  };
  swfobject.embedSWF("/_mnweb/swf/imagerotator.swf", div, w+"px", h+"px", "9.0.0", null, params);
  swfobject.createCSS(
    "#"+div, 
    "width:"+w+"px; height:"+h+"px;"
  );
}

function createMnetImageRotatorCss(prefix, div, w, h, extracss)
{
  var params = {
    file: "/ImageListXML.aspx?ImagePrefix="+prefix+"&size=large",
    transition: "fade",
    shownavigation: "false",
    shuffle: "false",
    autostart: "true",
    usefullscreen: "false",
    width: w,
    height: h
  };
  swfobject.embedSWF("/_mnweb/swf/imagerotator.swf", div, w+"px", h+"px", "9.0.0", null, params);
  swfobject.createCSS(
    "#"+div, 
    "width:"+w+"px; height:"+h+"px;"+extracss
  );
}