function openWindow(page) {
  newWindow = window.open(
  page,
    "Hirdetes", 
    "location=yes,menubar=no,scrollbars=yes,status=no,titlebar=no,toolbar=no,resizable=yes,width=450,height=400");
  newWindow.focus();
}
