﻿
function openWindow(page, width, height) {
  var w = window.open(page,"NewWindow","width="+ width +",height="+ height +",status=0,toolbar=0,menubar=0,resizable=0,scrollbars=1");
  w.focus();
}

