﻿// JScript File

function openWindow(url, width, height) {
if (window.showModalDialog)
  {
  //window.captureEvents (Event.CLICK|Event.FOCUS)
  
 win = window.open(url, "Sub", "scrollbars=yes,width="+width+",height="+height+",resizable=yes");
  win.focus();
  }
  else
  {
	window.top.captureEvents (Event.CLICK|Event.FOCUS)
    //window.top.onclick=IgnoreEvents
    //window.top.onfocus=HandleFocus 
    winModalWindow = window.open(url, "Sub", "scrollbars=yes,width="+width+",height="+height+",resizable=yes");
    winModalWindow.focus()
    }
   //window.open(page, "list", "width=650,height=510");
}
