 function open_window(link) //opens new window
 {
  var win = "width=400,height=400,menubar=no,location=no,resizable=yes,scrollbars=yes";
  newWin = window.open(link,"newWin",win);
  newWin.focus();
 }

