// JavaScript Document

function d2_openBrWindow(theURL,winName) { // open pop up window with link passed to function
  NewWindow = window.open(theURL,winName,"scrollbars=yes,resizable=yes,width=740,height=600");
  NewWindow.focus();  
}

