function PopUpWindow(url, width, height, win, scrollbar)  {
var popUpString = "height=" + height + ",width=" + width + ",channelmode=0,dependent=0,directories=0,fullscreen=0,location=0,menubar=0,resizable=1,scrollbars=" + scrollbar + ",status=0,toolbar=0";
var popup = window.open(url, win, popUpString);
popup.focus();
}

function PopNewWindow(url, width, height, win)  {
var popwin = window.open(url, win, "height=" + height + ",width=" + width + ",channelmode=0,dependent=0,directories=0,fullscreen=0,location=1,menubar=1,resizable=1,scrollbars=1,status=1,toolbar=1");
popwin.focus();
}

function PopHelpWindow(url, width, height, win)  {
var popHelp = window.open(url, win, "height=" + height + ",width=" + width + ",channelmode=0,dependent=0,directories=0,fullscreen=0,location=1,menubar=0,resizable=1,scrollbars=1,status=0,toolbar=0");
popHelp.focus();
}