//JavaScript - General Definitions//All rights reserved - Copyright by medialink 2001-2008 - v6.00/05.03.2008//-----browserAndSystem-settingvar brAgent   = navigator.userAgent.toLowerCase();var brName    = navigator.appName;var brVersion = navigator.appVersion;var w3c    = (document.getElementById);   //N6M, N6W, E5M, E5W, E5.5W, E6W, E7Wvar bv4    = (document.images && screen); //universal browser version 4 and highervar ns     = (brName == "Netscape");var ns3    = ((brName == "Netscape") && (parseInt(navigator.userAgent.substring(8,9)) == 3));var ns4    = (document.layers); //N4W, N4.5M, N4.7Wvar ie     = (brName == "Microsoft Internet Explorer");var ie4    = ((brAgent.indexOf('msie')>-1) && (document.all) && (!w3c)); //E4.5M, E4Wvar ie5    = (brAgent.indexOf('msie 5')>-1);var ie55   = (brAgent.indexOf('msie 5.5')>-1);var ie6    = (brAgent.indexOf('msie 6')>-1);var ie7    = (brAgent.indexOf('msie 7')>-1);var safari = (brAgent.indexOf('safari') > -1);var mac    = (brVersion.indexOf("Mac") > -1);var nomac  = (brVersion.indexOf("Mac") == -1);var win    = (brVersion.indexOf("Win") > -1);var online = (self.location.href.indexOf('http') > -1);//----defining basic variablesvar lang = "english";var bookmarkshortcut = "CTRL+D";var printshortcut = "CTRL+P";	if (mac){		bookmarkshortcut = "COMMAND+D";		printshortcut = "COMMAND+P"	}//-----defining the basic messagesvar msgBrowserFailed = "Your browser does not support certain functions needed for this site. Please update your browser.";var	msgScreenResFailed ="Sorry, this website requires a screen resolution of 1024x768 pixel or higher. You can continue but you will only be able to use the interface to a certain limited extent.  The settings of your graphics system may allow you to enter higher values.";var msgWinOpenFailed = "Certain JavaScript functions are deactivated on your computer! If you wish to use the window options, please activate full JavaScript functionality.";var msgFunctionFailed = "This function is not supported by your browser or your current system configuration!";var	msgPrintingFailed = "This function is not supported by your browser. To print out the document please press " + printshortcut +".";var msgBookmarkingFailed = "This function is not supported by your browser. To bookmark this page please press " + bookmarkshortcut + ".";var msgFormRequired = "Please complete the inscriptions marked by *.";var msgFormSubmit= "Thank you for your request. We will carry it out as soon as possible.";if (self.location.href.indexOf("deutsch") > -1){	lang = "deutsch";	msgBrowserFailed = "Ihr Browser unterst�tzt ben�tigte Funktionen nicht. Nehmen Sie bitte ein Update vor.";	msgScreenResFailed ="F�r diese Website ist eine Bildschirmaufl�sung von 1024x768 Pixel erforderlich. Sie k�nnen weitergehen, werden aber das Interface nur bedingt bedienen k�nnen. Eventuell erlauben die Einstellungen Ihres Grafiksystems die Eingabe h�herer Werte.";	msgWinOpenFailed = "Einige JavaScript-Funktionen sind deaktiviert! Bitte aktivieren Sie volle JavaScript-Funktionalit�t f�r die Nutzung von Fensteroptionen.";	msgFunctionFailed = "Diese Funktion wird durch Ihren Browser oder die aktuelle System-Konfiguration nicht unterst�tzt!";	msgPrintingFailed = "Diese Funktion wird durch Ihren Browser nicht unterst�tzt. Dr�cken Sie bitte " + printshortcut +" um das Dokument auszudrucken.";	msgBookmarkingFailed = "Diese Funktion wird durch Ihren Browser nicht unterst�tzt. Dr�cken Sie bitte "+bookmarkshortcut+" um ein Lesezeichen auf diese Seite zu setzen.";	msgFormRequired = "Bitte f�llen Sie mindestens alle mit * bezeichneten Felder aus!";	msgFormSubmit = "Vielen Dank f�r Ihr Interesse an unseren Dienstleistungen. Wir werden Ihren W�nschen so rasch als m�glich nachkommen.";}//---end of file