<!--Begin 
var popwin = null;
function NewWindow (page,w,h) {
 self.name = "main";
 NewWindowClose();
 options = "toolbar=0,status=0,menubar=0,scrollbars=1,resizable=1,location=0,width=" + w + ",height=" + h + ",screenX=1,screenY=1,top=1,left=1";
 popwin = window.open(page,"",options);
 if (popwin == null || typeof(popwin) == "undefined") {
  document.location.replace("popupblocker.html");
 }
 popwin.document.close();
}
function NewWindowClose () {
 if (popwin != null && !popwin.closed) popwin.close();
}
//--End-->

