
	/* --------------------------------------------------------------------------------------------- */
	/* A) Init
	/* --------------------------------------------------------------------------------------------- */
	
	var GLOBAL	= {};
	var LOCAL	= {};
	

	/* --------------------------------------------------------------------------------------------- */
	/* B) Logik
	/* --------------------------------------------------------------------------------------------- */

	// GEO IP
	GLOBAL['GEOIP_COUNTRY_CODE'] = 'US';
	
	// Topin Host
	GLOBAL['topin_host'] = 'www.topin.travel';
	
	// Browser = IE
	GLOBAL['IE'] = (navigator.appName == 'Microsoft Internet Explorer');
	GLOBAL['IE6'] = false;
	GLOBAL['SAFARI'] = (navigator.userAgent.indexOf('Safari') != -1);

	// WEMF
	GLOBAL['WEMF_BASE_URL'] = 'http://toptrave.wemfbox.ch/cgi-bin/ivw/CP/';
	
	// Google Custom Search Filter
	GLOBAL['GOOGLE_SEARCH_FILTERS'] = {
		'webcams'		: 'webcams',
		'afz'			: 'ausflüge_ferien',
		'gastro'		: 'gastro',
		'unterkuenfte'	: 'unterkünfte'
	};

	// E-Mail
	GLOBAL['email'] = [];
		
	GLOBAL['email'].push('@');
	GLOBAL['email'].push('topin');
	GLOBAL['email'].push('.');
	GLOBAL['email'].push('travel');

	GLOBAL['email'].get = function(name) {
		return name + this.join('');
	}
	
	// Portal
	GLOBAL['portal'] = '';
	

	/* --------------------------------------------------------------------------------------------- */
	/* C) Error
	/* --------------------------------------------------------------------------------------------- */
	
	GLOBAL['js_error'] = [];
	GLOBAL['js_error']['error_page'] = '/no_javascript.php';
	