
/* 
 * Standard MCG Library for Web Projects
 * by Merrill Consulting Group, LLC (MCG)
 * http://www.merrillconsultinggroup.us
 *
 * @package    CORE LIBRARY
 * @subpackage javascript common to all web pages
 * @author     Merrill Consulting Group, LLC
 * @license    see License Agreement
 * @copyright  (C) 2009 Merrill Consulting Group, LLC
 *
 * THIS FILE IS SOURCE CODE AND YOU ARE NOT ALLOWED TO ALTER OR COPY it except as authorized within the License Agreement.
 * 
 * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY OF ANY KIND; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the License Agreement for more details.
 *
 */


var mcgCore = new function() {
	this.moduleId = "mcgCore";
	this.version = "1.0.0";
	this.versionDate = "23 May 2009";
	this.codeStatus = "stable";
	this.lastAuthor = "Ray Merrill";
	this.copyright = "Copyright 2009, Merrill Consulting Group, LLC";
	this.license = "Proprietary copyrights.  See your license agreement.";
}

mcgCore.doNothing = function() {
	// place holder only
	return true;
}


