﻿var mlmToolbar = function () {
	return {

		show: function (o, cc) {
			ownerId = parseInt(o);
			if (isNaN(ownerId) || ownerId <= 0) return;

			var host;
			var l = location;
			if (l.hostname == 'localhost') host = l.protocol + '//' + l.host + l.pathname.substr(0, l.pathname.indexOf('/', 1) + 1);
			else if (l.hostname.indexOf('test.uplication.com') >= 0) host = 'http://www.test.uplication.com/';
			else host = "http://www.uplication.com/";

			document.write('<script type="text/javascript" src="' + host + 'JavaScripts/mlmToolbar.aspx?o=' + ownerId + '&cc=' + cc + '"></script>');
		}

	}
} ();
