function newWindow(winURL) {
  theWin = window.open( winURL, 'New','width=700,height=700,scrollbars=0,resizable=0')
  theWin.focus()
}	

function newWindow1(winURL) {
  theWin = window.open( winURL, 'New','width=700,height=600,scrollbars=0,resizable=0')
  theWin.focus()
}	

function newWindow2(winURL) {
  theWin = window.open( winURL, 'New','width=400,height=300,scrollbars=0,resizable=0')
  theWin.focus()
}	
