// Károly György Tamás
// Add Communication
// Keresőgép version

function mouseover (imgname) {
  document.images[imgname].src = "images/mnu_" + imgname + "2.png";
};
function mouseout (imgname) {
  document.images[imgname].src = "images/mnu_" + imgname + ".png";
};
function popup(url, x, y, scroll) {
  var options = "toolbar=no,menubar=no,scrollbars=" + scroll + ",resizable=no,width=" + x + ",height=" + y;
  msgWindow=window.open(url,"", options);
};
function menumouseover (obj) {
  if (document.all) {
    document.all(obj).style.backgroundColor = "#6bc49e";
  };
  if (document.getElementById) {
    document.getElementById(obj).style.backgroundColor = "#6bc49e";
  };
};
function menumouseout (obj) {
  if (document.all) {
    document.all(obj).style.backgroundColor = "#808284";
  };
  if (document.getElementById) {
    document.getElementById(obj).style.backgroundColor = "#808284";
  };
};