<!-- hiding javascript code from old browsers// -> extra drawer potraitfunction toggleDrawer (target) {	if (target=="audio") {		var flashcode =			"<object classid=\"clsid:d27cdb6e-ae6d-11cf-96b8-444553540000\" codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0\" width=\"19\" height=\"17\" id=\"interview\" align=\"middle\">"		+	"	<param name=\"allowScriptAccess\" value=\"sameDomain\" />"		+	"	<param name=\"movie\" value=\"flash/interview.swf\" />"		+	"	<param name=\"FlashVars\" value=\"track=f8e0\" />"		+	"	<param name=\"menu\" value=\"false\" />"		+	"	<param name=\"quality\" value=\"high\" />"		+	"	<param name=\"scale\" value=\"noscale\" />"		+	"	<param name=\"bgcolor\" value=\"#CCCFBC\" />"		+	"	<embed src=\"flash/interview.swf\" FlashVars=\"track=f8e0\" menu=\"false\" quality=\"high\" scale=\"noscale\" bgcolor=\"#CCCFBC\" width=\"19\" height=\"17\" name=\"interview\" align=\"middle\" allowScriptAccess=\"sameDomain\" type=\"application/x-shockwave-flash\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" />"		+	"</object>";	}	arrowOver = new Image();	arrowOff  = new Image();	arrowOver.src = "images/arrow_drawer_over.gif";	arrowOff.src  = "images/arrow_drawer_off.gif";	if (document.images["arrow_" + target].src.indexOf("off") >= 0) {		document.images["arrow_" + target].src = arrowOver.src;	} else if (document.images["arrow_" + target].src.indexOf("over") >= 0) {		document.images["arrow_" + target].src = arrowOff.src;	}	if (document.layers) {		if (document.layers["drawer_" + target].visibility=="hidden") {			document.layers["drawer_" + target].visibility = "visible";			document.layers["drawer_" + target].height = "100%";			if (target=="audio") {				document.layers["interview"].innerHTML = flashcode;			}		} else {			document.layers["drawer_" + target].visibility = "hidden";			document.layers["drawer_" + target].height = "0px";			if (target=="audio") {				document.layers["interview"].innerHTML = "";			}		}	} else if (document.getElementById) {		var obj = document.getElementById("drawer_" + target);		var inv = document.getElementById("interview");		if  (obj.style.visibility=="hidden") {			obj.style.visibility = "visible";			obj.style.height = "100%";			if (target=="audio") {				inv.innerHTML = flashcode;			}		} else {			obj.style.visibility = "hidden";			obj.style.height = "0px";			if (target=="audio") {				inv.innerHTML = "";			}		}	} else if (document.all) {		if (document.all["drawer_" + target].style.visibility=="hidden") {			document.all["drawer_" + target].style.visibility = "visible";			document.all["drawer_" + target].style.height = "100%";			if (target=="audio") {				document.all["interview"].innerHTML = flashcode;			}		} else {			document.all["drawer_" + target].style.visibility = "hidden";			document.all["drawer_" + target].style.height = "0px";			if (target=="audio") {				document.all["interview"].innerHTML = "";			}		}	}}// -> end// -> arrow button rolloverfunction toggleArrow (target) {	arrowOver = new Image();	arrowOff  = new Image();	arrowOver.src = "images/arrow_" + target + "_over.gif";	arrowOff.src  = "images/arrow_" + target + "_off.gif";	if (document.images[target].src.indexOf("off") >= 0) {		document.images[target].src = arrowOver.src;	} else if (document.images[target].src.indexOf("over") >= 0) {		document.images[target].src = arrowOff.src;	}}// -> end// -> flag button rolloverfunction toggleFlag (target) {	flagOver = new Image();	flagOff  = new Image();	flagOver.src = "images/flag_" + target + "_over.gif";	flagOff.src  = "images/flag_" + target + "_off.gif";	if (document.images[target].src.indexOf("off") >= 0) {		document.images[target].src = flagOver.src;	} else if (document.images[target].src.indexOf("over") >= 0) {		document.images[target].src = flagOff.src;	}}// -> end// -> number button rolloverfunction toggleNumber (target) {	numberOn  = new Image();	numberOff = new Image();	numberOn.src  = "images/number_" + target + "_on.gif";	numberOff.src = "images/number_" + target + "_off.gif";	if (document.images["nr_" + target].src.indexOf("off") >= 0) {		document.images["nr_" + target].src = numberOn.src;		document.getElementById(target + "_a").style.color = "#8B8D7F";		document.getElementById(target + "_b").style.color = "#8B8D7F";	} else if (document.images["nr_" + target].src.indexOf("on") >= 0) {		document.images["nr_" + target].src = numberOff.src;		document.getElementById(target + "_a").style.color = "#A6AA98";		document.getElementById(target + "_b").style.color = "#A6AA98";	}}// -> end// -> drawer button rolloverfunction toggleLink (target,mode) {	var mode = mode;	switch (mode) {		case 1:			document.getElementById("link_" + target).style.color = "#F1F3EC";		break;		case 2:			document.getElementById("link_" + target).style.color = "#8B8D7F";		break;	}}// -> end// -> main menu rolloverfunction toggleMenu (lang,target) {	lang = (lang==1) ? "de" : "en";	menuOn  = new Image();	menuOff = new Image();	menuOn.src  = "images/navi_" + lang + "_" + target + "_on.gif";	menuOff.src = "images/navi_" + lang + "_" + target + "_off.gif";	if (document.images[target].src.indexOf("off") >= 0) {		document.images[target].src = menuOn.src;	} else if (document.images[target].src.indexOf("on") >= 0) {		document.images[target].src = menuOff.src;	}}// -> end// -> ajaxfunction loadNavigation (lang,group,item,index) {	query = (typeof group != "undefined") ?		"&group=" + group + "&item=" + item : "";	query = (typeof index != "undefined") ?		query + "&index=" + index : query;	source = "navi.php?lang=" + lang + query;	var xmlHttp = null;	// Mozilla, Opera, Safari and Internet Explorer 7	if (typeof XMLHttpRequest != "undefined") {		xmlHttp = new XMLHttpRequest();	}	if (!xmlHttp) {	// Internet Explorer 6 and older		try {			xmlHttp	= new ActiveXObject("Msxml2.XMLHTTP");		} catch(e) {			try {				xmlHttp	= new ActiveXObject("Microsoft.XMLHTTP");			} catch(e) {				xmlHttp	= null;			}		}	}	if (xmlHttp) {		xmlHttp.open("GET",source,true);		xmlHttp.onreadystatechange = function () {			if (xmlHttp.readyState == 4) {				if (document.layers) {					document.layers["navigation"].innerHTML = xmlHttp.responseText;				} else if (document.getElementById) {					var obj = document.getElementById("navigation");					obj.innerHTML = xmlHttp.responseText;				} else if (document.all) {					document.all["navigation"].innerHTML = xmlHttp.responseText;				}			}		};		xmlHttp.send(null);	}}function loadContent (lang,target) {	var xmlHttp = null;	// Mozilla, Opera, Safari and Internet Explorer 7	if (typeof XMLHttpRequest != "undefined") {		xmlHttp = new XMLHttpRequest();	}	if (!xmlHttp) {	// Internet Explorer 6 and older		try {			xmlHttp	= new ActiveXObject("Msxml2.XMLHTTP");		} catch(e) {			try {				xmlHttp	= new ActiveXObject("Microsoft.XMLHTTP");			} catch(e) {				xmlHttp	= null;			}		}	}	if (xmlHttp) {		xmlHttp.open("GET","data/pages/page_" + target + ".php?lang=" + lang,true);		xmlHttp.onreadystatechange = function () {			if (xmlHttp.readyState == 4) {				if (document.layers) {					document.layers["content"].innerHTML = xmlHttp.responseText;				} else if (document.getElementById) {					var obj = document.getElementById("content");					obj.innerHTML = xmlHttp.responseText;				} else if (document.all) {					document.all["content"].innerHTML = xmlHttp.responseText;				}			}		};		xmlHttp.send(null);	}}function loadAudio (lang,target,index) {	var xmlHttp = null;	// Mozilla, Opera, Safari and Internet Explorer 7	if (typeof XMLHttpRequest != "undefined") {		xmlHttp = new XMLHttpRequest();	}	if (!xmlHttp) {	// Internet Explorer 6 and older		try {			xmlHttp	= new ActiveXObject("Msxml2.XMLHTTP");		} catch(e) {			try {				xmlHttp	= new ActiveXObject("Microsoft.XMLHTTP");			} catch(e) {				xmlHttp	= null;			}		}	}	if (xmlHttp) {		xmlHttp.open("GET","data/pages/page_" + target + ".php?lang=" + lang + "&index=" + index,true);		xmlHttp.onreadystatechange = function () {			if (xmlHttp.readyState == 4) {				if (document.layers) {					document.layers["content"].innerHTML = xmlHttp.responseText;				} else if (document.getElementById) {					var obj = document.getElementById("content");					obj.innerHTML = xmlHttp.responseText;				} else if (document.all) {					document.all["content"].innerHTML = xmlHttp.responseText;				}			}		};		xmlHttp.send(null);	}}function loadVideo (lang,target,index) {	var xmlHttp = null;	// Mozilla, Opera, Safari and Internet Explorer 7	if (typeof XMLHttpRequest != "undefined") {		xmlHttp = new XMLHttpRequest();	}	if (!xmlHttp) {	// Internet Explorer 6 and older		try {			xmlHttp	= new ActiveXObject("Msxml2.XMLHTTP");		} catch(e) {			try {				xmlHttp	= new ActiveXObject("Microsoft.XMLHTTP");			} catch(e) {				xmlHttp	= null;			}		}	}	if (xmlHttp) {		xmlHttp.open("GET","data/pages/page_" + target + ".php?lang=" + lang + "&index=" + index,true);		xmlHttp.onreadystatechange = function () {			if (xmlHttp.readyState == 4) {				if (document.layers) {					document.layers["content"].innerHTML = xmlHttp.responseText;				} else if (document.getElementById) {					var obj = document.getElementById("content");					obj.innerHTML = xmlHttp.responseText;				} else if (document.all) {					document.all["content"].innerHTML = xmlHttp.responseText;				}			}		};		xmlHttp.send(null);	}}function loadGallery (lang,target,index) {	var xmlHttp = null;	// Mozilla, Opera, Safari and Internet Explorer 7	if (typeof XMLHttpRequest != "undefined") {		xmlHttp = new XMLHttpRequest();	}	if (!xmlHttp) {	// Internet Explorer 6 and older		try {			xmlHttp	= new ActiveXObject("Msxml2.XMLHTTP");		} catch(e) {			try {				xmlHttp	= new ActiveXObject("Microsoft.XMLHTTP");			} catch(e) {				xmlHttp	= null;			}		}	}	if (xmlHttp) {		xmlHttp.open("GET","gallery.php?lang=" + lang + "&target=" + target + "&index=" + index,true);		xmlHttp.onreadystatechange = function () {			if (xmlHttp.readyState == 4) {				if (document.layers) {					document.layers["gallery"].innerHTML = xmlHttp.responseText;				} else if (document.getElementById) {					var obj = document.getElementById("gallery");					obj.innerHTML = xmlHttp.responseText;				} else if (document.all) {					document.all["gallery"].innerHTML = xmlHttp.responseText;				}			}		};		xmlHttp.send(null);	}}// -> end// -->
