
<!-- HIDE
// by Urs Dudli and Peter Gehrig Copyright (c) 2000 Peter Gehrig and Urs Dudli. All rights reserved.
// Permission given to use the script provided that this notice remains as is.
// ******************************  INFORMATION BOX SCRIPT  ///////////////////////////
// function followmouse() can be specified in .postLeft=x+100 and postTop=y-10 
// if position is not specified locally with the style absolute positioning in the div tag 

var whichaffiliate
var x,y
function showaffiliatewindow(thisaffiliate) {
	if (document.all) {
		whichaffiliate=eval("document.all."+thisaffiliate+".style")
		whichaffiliate.visibility="visible"	
		followmouse()
	}
}

function followmouse() {
	if (document.all) {
		whichaffiliate.posLeft=x-210
		whichaffiliate.posTop=y+10
		var timer=setTimeout("followmouse()",200)
	}
}

function hideaffiliatewindow() {
	if (document.all) {
		whichaffiliate.visibility="hidden"	
	}
}

function handlerMM(e){
	x=document.body.scrollLeft+event.clientX
	y=document.body.scrollTop+event.clientY
}

if (document.all) {
	document.onmousemove=handlerMM;
}

else
// How long shall the submenu be visible? Answer in seconds
var standstill=8

// horizontal distance from the textlink to the submenu (pixels)
var xdistance=0

// vertical distance from the textlink to the submenu (pixels)
var ydistance=20

// CONFIGURATION OF NAVIGATION SCRIPT:
// submenu visibility in seconds
var standstill=8

// horizontal distance from the textlink to the submenu (pixels)
var xdistance=-10

// vertical distance from the textlink to the submenu (pixels)
var ydistance=20

// Do not edit the variables below
var timer
var x,y
var standstill=1000*standstill
var opensubmenu
var closesubmenu
var activated=false

function initiate() {	
	if (document.all) {
		closesubmenu=eval("document.all.submenu1.style")
		activated=true
	}
	if (document.layers) {
		closesubmenu=eval("document.submenu1")
		activated=true
	}
}

function show(whatsubmenu) {
	if (activated) {	
		if (document.all) {
			closesubmenu.visibility="hidden"
			closesubmenu=eval("document.all."+whatsubmenu+".style")
			opensubmenu=eval("document.all."+whatsubmenu+".style")
			opensubmenu.posTop=y+ydistance
			opensubmenu.posLeft=x+xdistance
			opensubmenu.visibility="visible"
			timer=setTimeout("hidesubmenu()",standstill)
		}
		if (document.layers) {
			closesubmenu.visibility="hidden"
			closesubmenu=eval("document."+whatsubmenu)
			opensubmenu=eval("document."+whatsubmenu)
			opensubmenu.top=y+ydistance
			opensubmenu.left=x+xdistance
			opensubmenu.visibility="visible"
			timer=setTimeout("hidesubmenu()",standstill)
		}
	}
}
	
function hidesubmenu() {
    clearTimeout(timer)
	closesubmenu.visibility="hidden"
	opensubmenu.visibility="hidden"
}


function handlerMM(e){
	x = (document.layers) ? e.pageX : document.body.scrollLeft+event.clientX
	y = (document.layers) ? e.pageY : document.body.scrollTop+event.clientY
}

if (document.layers){
	document.captureEvents(Event.MOUSEMOVE);
}
document.onmousemove=handlerMM;
window.onload=initiate

// - End of JavaScript - -->
