//
// JavaScript - Library
// (c) 1999-2001 ipWorx
// www.ipworx.de
//

////////////////////////////////////////////////////////

//
// browser-checks
//

nn4 = (document.layers)? true:false;
ie4 = (document.all)? true:false;
ie5 = false;
if (ie4) {
	if (navigator.userAgent.indexOf('MSIE 5')>0) { ie5 = true; }
}

////////////////////////////////////////////////////////

//
// navigation images
//

var navOff = new Array();
var navOn  = new Array();
for(i=0;i<=4;i++) {
	navOff[i] = new Image(); navOff[i].src = "images/nav_"+i+"_0.gif";
	navOn[i]  = new Image(); navOn[i].src  = "images/nav_"+i+"_1.gif";
}

////////////////////////////////////////////////////////

//
// popup functions
//
function showinfo(filename,size_w,size_h) {
        if (window.showwindow) window.showwindow.close();
	showwindow=window.open(filename, 'showwindow', 'toolbar=yes,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width='+size_w+',height='+size_h);
	window.setTimeout("window.showwindow.focus();",100);
}

////////////////////////////////////////////////////////

//
// eof
//