<!--
function setframe() {
	var myloc = '' + window.location.pathname;
	myloc =  myloc.replace("/","");
	top.location.replace('http://' + window.location.hostname + '/direkt.php?link=' + myloc);
	//top.location = 'intro.html?'+self.location.pathname;
	return true;
}

//window.onerror=setframe;
//alert(parent.frames.length);
if (parent.frames.length==0) {
	setframe();
} else {
	parent.document.title = self.document.title;
	window.defaultStatus = self.document.title;
}

// -->	
