﻿function renderSpotlight(origin, id, xmlFeed)
{
    // swfFileAndPath, id, width, height, version, color, onmouseoverEvent, onmouseoutEvent, expressInstall, quality, redirectUsersCompleteExpressInstallUpgrade, redirectUsersWithIncorrectPlugin, detectFlash
    var so = new SWFObject(origin+"/common/flash/spotlight.swf?xmlToLoad="+xmlFeed, id, "146", "350", "8", "#ffffff");
    so.addParam("salign", "CT");
    so.addParam("scale", "noscale");
    so.addParam("quality", "high");
    so.addParam("allowScriptAccess", "always");
    so.addParam("wmode", "transparent");
    so.addParam("type", "application/x-shockwave-flash");
    so.addParam("pluginspage", "http://www.macromedia.com/go/getflashplayer");
    
    so.write(id);
}

