//bpmExplain.js
//July 10, 2003

var newwin = null;

//Function takes 3 parameters: URL, width, and height of the window to pop up
function bpmExplain(url,width,height) {
          var date = new Date();
          newwin = window.open('',date.getSeconds(), 'height='+height+',width='+width+',location=no,status=no,menubar=no,toolbar=no,scrollbars=no,resizable=yes,left=110,top=42');
          newwin.location.replace(url);
          newwin.focus();
}

//Version that takes 4 parameters; Same as above, plus top gives how far from the top of the screen to display the new window
function bpmExplain_scroll(url,width,height,top) {
          var date = new Date();
          newwin = window.open('',date.getSeconds(), 'height='+height+',width='+width+',location=no,status=no,menubar=no,toolbar=no,scrollbars=yes,resizable=yes,left=110,top='+top);
          newwin.location.replace(url);
          newwin.focus();
}