var newWindow
function newWinForCourses(url) {
  newWindow=window.open(url,'newWin','height=620,width=800,left=100,top=100,resizeable=no,scrollbars=no,toolbar=no,status=yes');
  if (window.focus) {
    newWindow.focus()
  }
}