//BILDER LADEN (ROLLOVER)
if (document.images) {
    nav_box0 = new Image(6,9); nav_box0.src = "images/nav_btn_link.gif";
    nav_box1 = new Image(6,9); nav_box1.src = "images/nav_btn_link_h.gif";
}

/////////////////////////////////
// ROLLOVER

function changeImg(Name,Image,No) {
	if (document.images)
		document.images[Name].src = eval(Image + No + '.src');
}


/////////////////////////////////
// NEUES FENSTER OEFFNEN
function newWindow(name,url,bar,resize,width,height) {
	var ewindow = window.open(url,''+name,'scrollbars='+bar+',menubar=no,status=no,resizable='+resize+',width='+width+',height='+height);
	if (!ewindow.opener) ewindow.opener = self;
	if (ewindow.focus != null) ewindow.focus();
}

/////////////////////////////////
// NETSCAPE 4 RESIZE-FIX
function reloadPage(init) {
	if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
    	document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
	else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) 
		location.reload();
}

reloadPage(true);