var timeout = null;

function ladeFrameset(root) {
	
	if(!top.logo) { top.location.href  = root + "index.htm"; }
}

function javascriptTest(seite, ziel) {

	ziel.location.href = seite;
}

function mausKlickAnhaengen() {
	
	clearTimeout(timeout);
	
	if(document.getElementsByTagName("body")[0]) { document.onclick = MAUSKLICK; }
	else { timeout = setTimeout("mausKlickAnhaengen();", 50); }
}

function MAUSKLICK() {

	top.stolpersteine.fensterAus();
}

mausKlickAnhaengen();


