function mmLoadMenus() {
    window.mm_menu_0418122937_0_1 = new Menu("landscape&nbsp;-",98,25,"Verdana, Arial, Helvetica, sans-serif",13,"#666666","#999999","#000000","#000000","left","middle",3,0,100,0,0,true,false,true,3,false,false);
    mm_menu_0418122937_0_1.addMenuItem("africa","window.open('../../africa/index.htm', '_self');");
    mm_menu_0418122937_0_1.addMenuItem("australia","window.open('../../australia/index.htm', '_self');");
    mm_menu_0418122937_0_1.addMenuItem("asia","window.open('../../asia/index.htm', '_self');");
    mm_menu_0418122937_0_1.addMenuItem("europe","window.open('../../europe/index.htm', '_self');");
    mm_menu_0418122937_0_1.addMenuItem("usa","window.open('../../usa/index.htm', '_self');");
     mm_menu_0418122937_0_1.hideOnMouseOut=true;
     mm_menu_0418122937_0_1.menuBorder=0;
     mm_menu_0418122937_0_1.menuLiteBgColor='#ffffff';
     mm_menu_0418122937_0_1.menuBorderBgColor='#555555';
     mm_menu_0418122937_0_1.bgColor='#555555';
  window.mm_menu_0418122937_0 = new Menu("root",98,25,"Verdana, Arial, Helvetica, sans-serif",13,"#666666","#999999","#000000","#000000","left","middle",3,0,100,0,0,true,false,true,3,false,false);
  mm_menu_0418122937_0.addMenuItem(mm_menu_0418122937_0_1);
  mm_menu_0418122937_0.addMenuItem("nature","window.open('../../nature/index.htm', '_self');");
  mm_menu_0418122937_0.addMenuItem("animal","window.open('../../animal/index.htm', '_self');");
  mm_menu_0418122937_0.addMenuItem("people","window.open('../../people/index.htm', '_self');");
  mm_menu_0418122937_0.addMenuItem("others","window.open('../../others/index.htm', '_self');");
   mm_menu_0418122937_0.hideOnMouseOut=true;
   mm_menu_0418122937_0.childMenuIcon="../arrows.gif";
   mm_menu_0418122937_0.menuBorder=0;
   mm_menu_0418122937_0.menuLiteBgColor='#ffffff';
   mm_menu_0418122937_0.menuBorderBgColor='#555555';
   mm_menu_0418122937_0.bgColor='#555555';

  mm_menu_0418122937_0.writeMenus();
}

function click() {
if (event.button==2) {
alert('Soukup')
}
}
document.onmousedown=click

function ViewImage(bildurl,b,h,bildtitel)
{
var eigenschaften,sbreite,shoehe,fenster,b,h;

// stellt die Bildschirmabmessungen fest
var ns6 = (!document.all && document.getElementById);
var ie4 = (document.all);
var ns4 = (document.layers);

if(ns6||ns4) {
sbreite = innerWidth;
shoehe = innerHeight;
}
else if(ie4) {
sbreite = document.body.clientWidth;
shoehe = document.body.clientHeight;
}

x = (sbreite-b)/2;
y = (shoehe-h)/2;

eigenschaften="left="+x+",top="+y+",screenX="+x+",screenY="+y+",width="+b+",height="+h+",menubar=no,toolbar=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>'+ bildtitel +'</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('<center>');
  document.write('<img src="'+ bildurl +'"border="0">');
  document.write('<center>');
  document.write('</body></html>');
  fenster.document.close();
}
}