﻿// JScript File


function newWindow(winURL, winName)
{
  var popWin; // this will hold our opened window

  // first check to see if the window already exists
  if(popWin&&!popWin.closed)
      popWin.close(); 
  // if we get here, then the window hasn't been created yet, or it
  // was closed by the user.
  popWin = window.open(winURL, winName);
  popWin.focus();
   
}


