//****************************************************************
// Popup
//****************************************************************
function popup(source, width, height)
{  
  window.open(source,"","width="+width+",height="+height+",resize=no,scrollbars=no,menubar=no,directories=no"); 
} 


//****************************************************************
// FRAME-CHECK --> WG. SUCHMASCHINEN
//****************************************************************

function frame_check(){
	if (top == self){
		// self
		var me = escape(self.location.pathname);
//		top.location.href = "index.htm";
	top.location.href="index-"+location.href.substring(location.href.lastIndexOf("/")+1,location.href.lastIndexOf("."))+".htm";
	}
}

//****************************************************************
// STATUS-LEISTE AUSBLENDEN
//****************************************************************

document.onmouseover = function ( e ) {   
if ( !e ) e = window.event;   
var el = e.target ? e.target : e.srcElement;   
while ( el != null && el.tagName != "A" ) el = el.parentNode;   
if ( el == null ) return;   
if ( e.preventDefault ) e.preventDefault();   
else e.returnValue = true;};

