function Heimspiel () {}

Heimspiel.openMap = function() {
  var url = '/2006/ausstellung/karte/';
  var name = 'map';
  var width = 735;
  var height = 490;
  window.open(url, name, "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=" + width + ",height=" + height);
}

Heimspiel.initScrolllayer = function() {
	var list = lm_scrolllayer_Layer.create('kuenstlerlist', 140, 0, 8, 50);
	list.init();	
}

Heimspiel.externalLinks = function() {
	if (!document.getElementsByTagName) return; // not suppoerted, so return
	
	var anchors = document.getElementsByTagName("a");
	for (var i = 0; i < anchors.length; i++) { 
		var anch = anchors[i];
		if (anch.getAttribute("href") && anch.getAttribute("rel") == "external") {
			anch.setAttribute("target", "_blank");
		}
	}
} 

Heimspiel.onload = function() {
	Heimspiel.externalLinks();
}

