function on(imgName, imgObj ){
   if( document.images ){
      document.images[imgName].src = eval( imgObj+".src" );
  }
}

function load( imgObj, imgSrc ){
   if( document.images ){
      eval( imgObj+' = new Image()' );
      eval( imgObj+'.src = "'+imgSrc+'"' );
   }
}

if( document.images ){
   load('li','/img/menu/m_item.gif');
   load('li_a','/img/menu/m_item_a.gif');
}

function showBig(name,x,y) {
  big = open("","big","width="+x+",height="+y+",screenX=0,screenY=0,resizable=0")
  big.document.open();
  big.document.writeln('<html><head><title>&nbsp;</title></head>');
  big.document.writeln("<body marginHeight=0 marginWidth=0 topMargin=0 leftMargin=0><img name='foto' src='' width="+x+" height="+y+" alt=''>");
  big.document.foto.src=name;
  big.document.close();
}
