
function newWindow(newContent)
  {
winContent = window.open(newContent, 'nextWin', 'width=800,height=650,left=0,top=0,resizable=yes,scrollbars=yes,toolbar=yes')

winContent.focus()
  }


//use the code below for linking
//<a href="javascript:newWindow('x.html')">open window in the top left</a>