// JavaScript Document
function $AC_GLOBALS() { 
	this.config = {
		'environment'	: 'WAN',
		'domain'		: 'kookma.com',
		'protocol'		: 'http://',
		'sitename'		: 'Kookma Textile Industrial',
		'version'		: '1.0 Beta',
		'language'		: 'en',
		'defaultFontSize' : '11',
		'currentFontSize' : '11'
	};
	
	this.url = {
		'hostAddress'	: this.config.protocol+this.config.domain,
		'baseAddress'	: this.config.protocol+this.config.domain,
		'reference'		: 'http://www.aialabs.com/apx30',
		'ref'			: 'http://www.aialabs.com/apx30',
		'refim'			: 'http://www.aialabs.com/apx30/im3'
	};

	$AC_GLOBALS.prototype.geturl = function() { 
		this.ref = "Salam"; 
		return "ok";
	}
}

$GLOBALS = new $AC_GLOBALS;

