function openBox() {
var browser = navigator.appName;
//alert (browser)
if (browser == "Microsoft Internet Explorer") {
  boxWindow = window.open("BoxOutlet.htm", "BoxOutlet", "width=750,height=500,menubar=no,status=yes,resizable=yes,scrollbars=yes");
  boxWindow.creator = self
  boxWindow.focus()
}
else {
       
  boxWindow = window.open("notready.htm", "BoxOutlet", "width=550,height=350,menubar=no,status=yes,resizable=yes,scrollbars=yes");
  boxWindow.creator = self
  boxWindow.focus()
}

}

