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