function navimouseover(id)
{
	document.getElementById(id).style.backgroundColor='#333333';
	document.getElementById(id+'a').style.color='#ffffff';
}
function navimouseout(id)
{
	document.getElementById(id).style.backgroundColor='#8c9695';
	document.getElementById(id+'a').style.color='#000000';
}
function openPopup(adress,title,width,height,left,top) 
{
  popup = window.open(adress, title, "width="+width+",height="+height);
  popup.focus();
}
function openMap()
{
	popup=window.open('http://www.concept-media.de/fujitsu-group/map.html','oracle world map',"width=800,height=533");
	popup.focus();
}



function open_popup(popupid,url)
{
	popup_container=popupid+'_container';
	popup_frame=popupid+'_frame';
	document.getElementById(popup_container).style.display='block';
	document.getElementById(popup_frame).src="./popup_wildcard.html";
	document.getElementById(popup_frame).src=url;
}
function open_divpopup(popupid,url,left,top,width,height)
{
	popup_container=popupid+'_container';
	popup_frame=popupid+'_frame';
	document.getElementById(popup_container).style.left=left;
	document.getElementById(popup_container).style.top=top;
	document.getElementById(popup_container).style.width=width;
	document.getElementById(popup_container).style.height=height;
	document.getElementById(popup_container).style.display='block';
	document.getElementById(popup_frame).src="./popup_wildcard.html";
	document.getElementById(popup_frame).src=url;
}

function globalsearch()
{
	document.getElementById("globalform").submit();
}
