// JavaScript Document
function openForum(Adress) {
  win = window.open(Adress, "Forum", "width=810,height=625,resizable=yes,scrollbars=yes");
  win.focus();
}

function openWindow(adress, title, width, height) {
  // win = window.open(adress, title, "width='+width+',height='+height+',resizable=yes,scrollbars=yes");
  win = window.open(adress,title,"width=" + 1.05*width + ",height=" + 1.05*height + ",resizable=yes,scrollbars=yes");
  win.focus();
}

function openFixedWindow(adress, title, width, height) {
  // win = window.open(adress, title, "width='+width+',height='+height+',resizable=yes,scrollbars=yes");
  win = window.open(adress,title,"width=" + width + ",height=" + height + ",resizable=no,scrollbars=no");
  win.focus();
}

