function pageJump(url){
  window.location.href = url;
}

function openContactForm(email, entry, offerTitle){
  var offerTitleStr = '';
  if( offerTitle ){ offerTitleStr = "&offerTitle=" + escape(offerTitle); }
	window.open(base + "inc/contactform.inc.html?_lang=" + lang + "&additional_email=" + escape(email) + "&_entryPage=" + escape(entry) + offerTitleStr, 'contactform', 'width=520, height=320');
}

function setMap(country){
	document.getElementById('oekarte').src = base + "img/" + lang + "/oekarte_" + country + ".gif";
}
function unsetMap(){
	document.getElementById('oekarte').src = base + "img/" + lang + "/oekarte.gif";
}
function startList() {
	if (document.all&&document.getElementById) {
		navRoot = document.getElementById("xxlMainNav");
		for (i=0; i<navRoot.childNodes.length; i++) {
			node = navRoot.childNodes[i];
			if (node.nodeName=="LI") {
				node.onmouseover=function() {
					this.className+=" over";
				}
				node.onmouseout=function() {
					this.className=this.className.replace(" over", "");
				}
			}
		}
	}
}
