/**
 * Embed Metrici Advisor into another website
 * Copyright Metrici Limited 2008.
 */

// Defaults that may be overridden

var metrici_width = "100%";
var metrici_height = "400";

// Values that should not be overridden except in special circumstances

var _metrici_src = "http://www.metrici.com/advisor/app/switch_embedded.jsp";

/**
 * Embed Metrici Advisor into the app
 */
function metrici_advisor() {
  var embedHTML 
    = '<iframe frameborder="0" width="' + metrici_width
    + '" height="' + metrici_height
    + '" src="' + _metrici_src 
    + '">Sorry, Metrici Advisor can not run from this page because your browser does not support frames.</iframe>';
  document.write(embedHTML);
}
