// JavaScript Document
// Will Open a new browser window
var theURL="";
var winName="";
var features="";
function newWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
//-->

