function redirect(url, type){
	if(type == 'intern'){
		window.location.href =  '/' + url + '.html';
	}else{
		var bestaetigung = window.confirm('Achtung: Sie verlassen amg.li nach ' + url + '\nMöchten Sie fortfahren?');
		if(bestaetigung){
			window.location.href = 'http://' + url + '/';
		}
	}
}

var cordx = 10;
var cordy = 10;

info = null;

function showInfo(idnr) {
   info = document.getElementById('infobox_'+idnr);
   info.style.display = "block";
}

function hideInfo() {
   info.style.display = "none";
}

function moveInfo(e) {
   x = (document.all) ? window.event.x + document.body.scrollLeft : e.pageX;
   y = (document.all) ? window.event.y + document.body.scrollTop : e.pageY;
   if (info != null) {
       info.style.left = (x + cordx) + "px";
       info.style.top  = (y + cordy) + "px";
   }
}

document.onmousemove = moveInfo;

