function startRouting() {
  var flashvars = {
    siteXML: '/swfs/mpx/xml/site.xml',
    serverBaseUrl:'/mpx/routings'
  };
  var params = {
    //wmode:'transparent',
    bgcolor: '#d3c7ad',
    base: '/swfs/mpx'
  };

  // Hide the existing div and show the SWF
  // TODO Consider loading hidden, then showing once its loaded?
  jQuery('.mpx .content').hide();
  jQuery('.mpx #swf-div').show();
  swfobject.embedSWF('/swfs/mpx/routing.swf', 'swf-div', '680', '474', '10', '/swfs/expressInstall.swf',
    flashvars, params);
}
function startAssessment(flashvars) {
  var params = {
    bgcolor: '#d3c7ad',
    base: '/swfs/mpx'
  };

  // Hide the existing div and show the SWF
  // TODO Consider loading hidden, then showing once its loaded?
  jQuery('.mpx .content').hide();
  jQuery('.mpx #swf-div').show();
  swfobject.embedSWF('/swfs/mpx/assessment.swf', 'swf-div', '680', '474', '10', '/swfs/expressInstall.swf',
    flashvars, params);
}

function quitMpx() {
  parent.jQuery.fn.colorbox.close();
}
