// Anzahl der Men-Eintr�e

function display(layer,bgcolor, color) {
  hideAll();
  getElem("id",layer+'-td',null).style.backgroundImage = "url(./templates/epinion/menu_background.php?size="+(getElem("id",layer+'-td',null).offsetWidth)+")";
}

function hide(layer) {
  getElem("id",layer+'-td',null).style.backgroundImage = "";
}	

function hideAll() {
  var i=0;
  for(i=0; i<MenuEntries.length; i++) hide(MenuEntries[i]);
}

function colorizeMenu(who, color) {
  who.style.backgroundColor=color;
}

function openWindow(url) {
  win = window.open(url, 'printwin', 'toolbar=no,menubar=yes,scrollbars=yes,width=525,height=600'); 
  win.focus();
}

