<!--

 function launch(newURL, newName, newFeatures, orgName) {

  var remote = open(newURL, newName, newFeatures);

  if (remote.opener == null)

    remote.opener = window;

  return remote;

}



function newWindow(URL) {

  myNewWindow = launch(URL,

      "myNewWindow",

      "height=230,width=390,location=0,menubar=0,resizable=0,scrollbars=1,status=0,titlebar=1,toolbar=0",

      "Tickets");

}



function caseWindow(URL) {

  myCaseWindow = launch(URL,

      "myCaseWindow",

      "height=220,width=510,location=0,menubar=0,resizable=0,scrollbars=1,status=0,titlebar=1,toolbar=0",

      "Tickets");

}





// -->


