function newImage(arg) {
	if (document.images) {
		rslt = new Image();
		rslt.src = arg;
		return rslt;
	}
}

function changeImages() {
	if (document.images && (preloadFlag == true)) {
		for (var i=0; i < changeImages.arguments.length; i+=3) {
			document[changeImages.arguments[i]].src = changeImages.arguments[i+1];
		}
	}
}

var preloadFlag = false;

function menuactive(currentitem,currentlanguage)
{
	if (currentpage!=currentitem)
	{
		document["nav_"+currentitem].src="/www_mb/nav_images/"+currentlanguage+"_nav_"+currentitem+"_actv.gif";
	}
}

function menuidle(currentitem,currentlanguage)
{
	if (currentpage!=currentitem)
	{
		document["nav_"+currentitem].src="/www_mb/nav_images/"+currentlanguage+"_nav_"+currentitem+"_idle.gif";
	}
}

function floaterShow (aw,ah,url) 
{
	// scrollbars = yes
	// resizable = no
	// menubar, toolbar = no
	exthtml=window.open(url,"exthtml","screenX=150,left=150,screenY=150,top=150,location=no,directories=no,status=no,scrollbars=yes,resizable=no,copyhistory=no,menubar=no,toolbar=no,width="+aw+",height="+ah+"");
	exthtml.focus();
}

function floaterShow2 (aw,ah,url) 
{
	// scrollbars = yes
	// resizable = yes
	// menu, toolbar = yes
	exthtml=window.open(url,"exthtml","screenX=150,left=150,screenY=150,top=150,location=no,directories=no,status=no,scrollbars=yes,resizable=yes,copyhistory=no,menubar=yes,toolbar=yes,width="+aw+",height="+ah+"");
	exthtml.focus();
}

function floaterShow3 (aw,ah,url) 
{
	// scollbars = no
	// resizable = no
	// menubar, toolbar = no
	exthtml=window.open(url,"exthtml","screenX=150,left=150,screenY=150,top=150,location=no,directories=no,status=no,scrollbars=no,resizable=no,copyhistory=no,menubar=no,toolbar=no,width="+aw+",height="+ah+"");
	exthtml.focus();
}

function setMainWindow (url) 
{
	opener.top.location = url;
}

function setMainWindowAndClose (url) 
{
	opener.top.location = url;
	self.close();
}

function extpicShow (aw,ah,iw,ih,iurl,windowtitle) {
	extpic=window.open("extpicwin","extpic","toolbar=no,screenX=100,left=100,screenY=100,top=100,location=no,directories=no,status=no,scrollbars=yes,resizable=no,copyhistory=no,menubar=no,width="+aw+",height="+ah+"");
	extpic.document.close();
	extpic.document.write("<HEAD><TITLE>"+windowtitle+"</TITLE></HEAD><BODY BGCOLOR=#FFFFFF topmargin=0 leftmargin=0 marginwidth=0 marginheight=0><center><a href='javascript:self.close();'><IMG SRC='"+iurl+"' width='"+iw+"' height='"+ih+"' border='0'></a></center></BODY>");
	extpic.focus();
}