<!--
var activeTooltip;
var clientX;
var clientY;

function idbaseGUIMousePosition( Event )
{
	if( document.all ) {
		clientX = window.event.x;
		clientY = window.event.y;
	} else {
		clientX = Event.pageX;
		clientY = Event.pageY;
	}
}

function idbaseGUITooltipShow( e, x, y, hide, timeout )
{
	if( !document.activeTooltips ) {
		document.activeTooltips = new Array();
	}

	if( hide ) {
		idbaseGUITooltipsHide();
	}

	document.activeTooltips[e] = activeTooltip = document.getElementById( e );

	setTimeout( 'if( activeTooltip.id == "' + e + '" && document.activeTooltips[activeTooltip.id] ) { MM_showHideLayers( activeTooltip.id, "", "show" ); }', timeout );
	document.activeTooltips[e].style.display = "block";

	if( x && clientX ) {
		if( window.document.body.scrollLeft ) {
			document.activeTooltips[e].style.left = clientX + window.document.body.scrollLeft + x;
		} else {
			document.activeTooltips[e].style.left = clientX + x;
		}
	}

	if( y && clientY ) {
		if( window.document.body.scrollTop ) {
			document.activeTooltips[e].style.top = clientY + window.document.body.scrollTop + y;
		} else {
			document.activeTooltips[e].style.top = clientY + y;
		}
	}
}

function idbaseGUITooltipHide( e )
{
	if( document.activeTooltips[e] ) {
		MM_showHideLayers( document.activeTooltips[e].id, '', 'hide' );
		document.activeTooltips[e].style.display = 'block';
		document.activeTooltips[e] = null;
	}
}

function idbaseGUITooltipToggle( e, x, y, timeout )
{
	if( document.activeTooltips != null && document.activeTooltips[e] ) {
		MM_showHideLayers( document.activeTooltips[e].id, '', 'hide' );
		document.activeTooltips[e].style.display = 'block';
		document.activeTooltips[e] = null;
	} else {
		idbaseGUITooltipShow( e, x, y, true, timeout );
	}
}

function idbaseGUITooltipsHide()
{
	if( !document.activeTooltips ) {
		return;
	}

	for( tooltip in document.activeTooltips ) {
		if( document.activeTooltips[tooltip] ) {
			MM_showHideLayers( document.activeTooltips[tooltip].id, '', 'hide' );
			document.activeTooltips[tooltip] = null;
		}
	}
}

function MM_findObj( n, d )
{
	var p,i,x;

	if(!d) {
		d=document;
	}
	
	if( (p = n.indexOf("?") ) > 0 && parent.frames.length ) {
		d=parent.frames[n.substring(p+1)].document;
		n=n.substring(0,p);
	}

	if( !(x=d[n])&& d.all ) {
		x = d.all[n];
	}

	for( i=0; !x && i < d.forms.length;i++ ) {
		x=d.forms[i][n];
	}

	for( i=0; !x && d.layers && i < d.layers.length;i++) {
		x = MM_findObj(n,d.layers[i].document);
	}

	if( !x && document.getElementById) {
		x=document.getElementById(n);
	}
	return x;
}

function MM_showHideLayers()
{
	var i,p,v,obj,args = MM_showHideLayers.arguments;

	for( i=0; i < (args.length-2); i+=3) {
		if( (obj = MM_findObj(args[i])) != null) {
			v=args[i+2];

			if( obj.style ) {
				obj=obj.style; v=(v=='show')?'visible':(v='hide')?'hidden':v;
			}

			obj.visibility=v;
		}
	}
}

var titel= top.frameset_titel;
	
	none=new Image();
  none.src="media/1x1.gif";
  africa=new Image();
  africa.src="media/world_africa.gif"; 
  asia=new Image();
  asia.src="media/world_asia.gif"; 
  australia=new Image();
  australia.src="media/world_australia.gif"; 
  europe=new Image();
  europe.src="media/world_europe.gif"; 
  n_america=new Image();
  n_america.src="media/world_northamerica.gif"; 
  s_america=new Image();
  s_america.src="media/world_southamerica.gif"; 
  middle_east=new Image();
  middle_east.src="media/world_middleeast.gif"; 

function bildwechsel_world(bildnr,bildobjekt)
{
   document.images[bildnr].src = eval(bildobjekt + ".src")
 }

document.onmousemove = idbaseGUIMousePosition;
//-->
