//Function to open a new window:  URL and window name parameters are passed dynamically from the href tag in the page.

function newWindow(url, win, w, h, s, r, t, l) {	
  window.open(url, win, "width=" + w + ",height=" + h + ",scrollbars=" + s + ",resizable=" + r + ",toolbar=" + t + ",location=" + l + "");
}	
