function NewWindow(url, name, w, h) { newwin = window.open(url, name, "resizable=yes,scrollbars=yes,width="+w+",height="+h);
   newwin.focus();
}
function ReloadWindow(url) { self.location = url; }

