function hideInfoBox() {
	document.getElementById("infobox").style.visibility = "hidden";
}

function showMAInfoBox(MAname, MAposition, MAimageUrl, MAheight, MAwidth) {
	document.getElementById("MAinfobox").style.visibility = "hidden";
	document.getElementById("MAimg").height = MAheight;
	document.getElementById("MAimg").width = MAwidth;
	document.getElementById("MAimg").src = MAimageUrl;
	
	document.getElementById("MAinfotext").innerHTML = "<strong>"+MAname+"</strong><br/>"+MAposition;
	document.getElementById("MAinfobox").style.visibility = "visible";
}

// www.web-toolbox.net , W. Jansen
function Bild(bildurl,b,h)
{
var eigenschaften,fenster;

x = 40;
y = 40;

eigenschaften="left="+x+",top="+y+",screenX="+x+",screenY="+y+",width="+b+",height="+h+",menubar=no,toolbar=no,location=no,status=no,scrollbars=no";

fenster=window.open("","",eigenschaften);
fenster.focus();
fenster.document.open();
with (fenster) {
  document.write('<html><head>');
  // ge‰ndert 2004 f¸r Mozilla
  document.write('<scr' + 'ipt type="text/javascr' + 'ipt" language="JavaScr' + 'ipt">');
  document.write("function click() { window.close(); } ");  // bei click  schliessen
  document.write("document.onmousedown=click; ");
  // ge‰ndert 2004 f¸r Mozilla
  document.write('</scr' + 'ipt>');
  document.write('<title>RBO - Gebrauchtfahrzeuge</title></head>');
  // Zeile ge‰ndert Aug 2003 (Dreamweaver machte Probleme)
  document.write('<' + 'body onblur="window.close();" ');// bei Focusverlust schliessen
  document.write('marginwidth="0" marginheight="0" leftmargin="0" topmargin="0">');
  document.write('<div align="center"><img src="'+ bildurl +'"border="0"></div>');
  document.write('</body></html>');
  fenster.document.close();
}
}
