var confTrackingEnabled = true;//for trackPage method
			
			
			var queryVariable = new Array();
	
			
			window.onload = function(){
				//hide the bottom scroll bar 
				document.getElementById("flashcontent").style.overflow = "hidden";
				document.getElementById("flashcontent").style.width = "1200px";
			}
	
	
			if(window.location.search != "") {
				var QUERYSTRING = "";
				
				QUERYSTRING = window.location.search;
				QUERYSTRING = QUERYSTRING.replace(/\?/,"");
				
				//trenne den querystring nach jedem & in teilstringe auf
				var queryParts = QUERYSTRING.split("&");
				
				//durchlaufe jeden dieser teilstrings
				for (i=0;i<queryParts.length;i++) {
				//trenne den teilsring in weiteren teilstring auf,
				//trenne also variablennamen vom inhalt
				query = queryParts[i].split("=");
				queryVariable[query[0]] = query[1];
				}
			} 
			
			function thisMovie(movieName) {
				var tagname = "embed";
				if (navigator.appName.indexOf("Microsoft") != -1) {
					tagname = "object";
				}
				return document.getElementsByTagName(tagname)[0];
			}
			
			/**
			* @param {String} basePath
			* @param {String} relativePath
			* @return {String}
			*/
			function getFullPath(basePath, relativePath){
				//alert("gfp: " + basePath, relativePath);
				var fullPath = basePath.substring(0, (basePath.lastIndexOf("/") + 1));
				var regXHostPath = /((^(https{0,1}\:\/\/[ ^\/ ]*\/))|(^(file\:\/\/[ ^\: ]*\:\/))|(^([ a-z ]+\:\\))|(^([ a-z ]+\:\/))|(^(\\\\))|(^(\/\/)))/i;
				if (regXHostPath.test(relativePath)) {
					fullPath = relativePath;
				} else {
					var regXGoingUp = /(\.\.\/)/g, goingUpArr = [], i;
					if (regXGoingUp.test(relativePath)) {
						goingUpArr = relativePath.match(regXGoingUp);
					}
					for (var i = 0; i < goingUpArr.length; ++i) {
						fullPath = fullPath.substring(0, (fullPath.lastIndexOf("/", (fullPath.length - 2)) + 1));
					}
					fullPath += relativePath.replace(regXGoingUp, "");
				}
				return fullPath;
			}
			
			function trackPage(url, title) {
				
			}
			
			function trackEvent(type, srcUrl, trgtUrl) {
				
			}
			
			function dcsMultiTrack(one, two, three, four) {
				//alert(one + ", " + two + ", " + three + ", " + four);
			}
			function openSiloFormLayer() {
				alert('Registration form is not available in offline module!');
				closeSiloFormLayer();
								
	  		}

	  						function closeSiloFormLayer() {
								callExternalInterface();
								
	  						}
	  						function callExternalInterface() {
	  						    thisMovie("Main").onFormClosed();
	  						}

	  						function thisMovie(movieName) {
	  						    if (navigator.appName.indexOf("Microsoft") != -1) {
	  						        return window[movieName]
	  						    }
	  						    else {
	  						        return document[movieName]
	  						    }
	  						}



// JavaScript Document
var thisMovieId="Main";
function initUniqueFunctions(){	
	window.onresize=uniqueResize;
	window.onscroll=uniqueScroll;
}
function uniqueResize(){
	if(document.body.clientWidth < 1000) {
		window.location.href="./_common/html/resize_window.html";
	}
	thisMovie(thisMovieId).onResize(getInnerWidth(),getInnerHeight(),getYOffset());
}
function uniqueScroll(){
	thisMovie(thisMovieId).onScroll(getYOffset());
}
function getInnerWidth(){
	if( typeof( window.innerWidth ) == 'number' ) {
    //Non-IE
		return  window.innerWidth;
	} else if( document.documentElement && document.documentElement.clientWidth) {
		//IE 6+ in 'standards compliant mode'
		return document.documentElement.clientWidth;
	} else if( document.body && document.body.clientWidth ) {
		//IE 4 compatible
		return document.body.clientWidth;
	}
}
function getInnerHeight(){
	if( typeof( window.innerHeight ) == 'number' ) {
    //Non-IE
		return  window.innerHeight;
	} else if( document.documentElement && document.documentElement.clientHeight) {
		//IE 6+ in 'standards compliant mode'
		return document.documentElement.clientHeight;
	} else if( document.body && document.body.clientHeight ) {
		//IE 4 compatible
		return document.body.clientHeight;
	}
}
function getYOffset(){
	if( typeof( window.pageYOffset ) == 'number' ) {
   		//Netscape compliant
    	return window.pageYOffset;
 	} else if( document.body && document.body.scrollTop ) {
       //DOM compliant
		return document.body.scrollTop;
    } else if( document.documentElement && document.documentElement.scrollTop ) {
    //IE6 standards compliant mode
		return document.documentElement.scrollTop;
	}
}
function setFlashHeight(value){
	thisMovie(thisMovieId).style.height=value;
}
function setFlashWidth(value){
	thisMovie(thisMovieId).style.width=value;
}
function uniqueScrollTo(value){
	window.scrollTo(0,value)
}
