// JavaScript Document
// window opener

function windowpop(destination, targetWidth, targetHeight) {
  popupWin = window.open(destination,
  'poppedWindow',
  'menubar=yes, toolbar=yes, location=yes, directories=no, status=yes, scrollbars=no, resizable=yes, dependent, targetWidth, targetHeight, left=0, top=0')
}
