/**********************************************************************************   
* Fix mouseclick (onfocus)                                                        *
***********************************************************************************/
window.onload = function() {
	if(document.layers) return;
	if(document.getElementById) links = document.getElementsByTagName("A");
	if(document.all) links = document.all.tags("A");
		for(a = 0; a < links.length; a++) links[a].onfocus = new Function('this.blur()');
}

/**********************************************************************************   
* open Popup-windows                                                              *
***********************************************************************************/
var w = screen.availWidth;
var h = screen.availHeight;
var popW = 630, popH = 451;
var leftPos = (w-popW)/2, topPos = (h-popH)/2;

function popup(file) {
open(file,'window','width=' + popW + ',height=' + popH + ',top=' + topPos + ',left=' + leftPos +',toolbar=0,directories=0,status=0,menubar=0,resizable=0,scrollbars=1');
}

/**********************************************************************************   
* select box                                                             *
***********************************************************************************/

function go()
{
	box = document.forms[0].navi;
	destination = box.options[box.selectedIndex].value;
	if (destination) location.href = destination;
}

