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

function PopNewWindow(id, win)  {
var popwin = window.open(id, 'popup', 'height=400,width=600,channelmode=0,dependent=0,directories=0,fullscreen=0,location=1,menubar=1,resizable=1,scrollbars=1,status=1,toolbar=1');
popwin.focus();
}

function PopHelpWindow(id, win)  {
var popHelp = window.open(id, 'popup', 'height=400,width=450,channelmode=0,dependent=0,directories=0,fullscreen=0,location=1,menubar=0,resizable=1,scrollbars=1,status=0,toolbar=0');
popHelp.focus();
}
