<!-- 
  function windowNew(targetURL)
  {
   leftPos=0
  if(screen) {leftPos = screen.width-700}
   
     NewWindow =
		window.open(targetURL,'',
'width=680,height=700,locationbar=no,menubar=no,scrollbars=yes,status=no,resizable=yes,left='+leftPos+',top=0');
  	NewWindow.focus();
  }
//-->