
function popupimage(url) {
  fotowindow = window.open(url, "foto", "width=700,height=500,left=100,top=200");
  fotowindow.focus();
}

function popup(url) {
  window = window.open(url, "_blank", "width=750,height=600,left=100,top=200,scrollbars=yes");
  window.focus();
}

function highlightMenuItem(item,color) {
	var id = "menu_"+item;
	var menutd = document.getElementById(id).style.background = color;
}

function restoreMenuItem(item) {
	var id = "menu_"+item;
	var menutd = document.getElementById(id).style.background = "#CECED2";
}