
function help_window(path)
// Name the Window, so the remote can target it -- for use with a close button in the future
{
self.name = "Parent_Window";
var helpwin = path;
var searchString = /LifeExp/;
var tempNum = path.search(searchString);
searchString = /Amort/;
var tempNum2 = path.search(searchString);
searchString = /PV/;
var tempNum3 = path.search(searchString);
if (tempNum > 0 || tempNum2 > 0 || tempNum3 > 0) {
var helpprop = "scrollbars,resizable,height=400,width=600,top=50, left=100";
}else{
var helpprop = "scrollbars,resizable,height=360,width=364,top=125, left=400";
}
var OpenWindow = window.open(helpwin, "", helpprop);
if (OpenWindow.blur) {
OpenWindow.focus();
}
return (true)
}
