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

