// Holt die Seite aus Frames heraus
if(top != self) top.location = self.location.href; 


// Navigation Highlightning
function markLink(obj, state, marked) {
	if(!marked) document.getElementById(obj.id).style.backgroundColor = state ? '#FCB53B' : '#666666';
}

// Holt den Link auf Tabelle
function createLink(obj) {
	StrPreLink = obj.id;
	StrLink = StrPreLink.slice(1,StrPreLink.lenght);
	location.href = './?tpl=' + StrLink;
}