// JavaScript Document
function openWindow(url, width, height, scrollbars) {
  popupWin = window.open(url,'new_page','width=' + width +',height=' + height +',scrollbars=' + scrollbars + ',toolbar=no, location=no, directories=no, status=no, menubar=no, resizable=no, copyhistory=no')
}

