// JavaScript Document

// window for Sales People
var SalesPersonWindow = null;
function OpenSalesPerson(strSalesPersonLocation){
if (SalesPersonWindow && SalesPersonWindow.open && !SalesPersonWindow.closed) {
//SalesPersonWindow.close();
SalesPersonWindow.location = strSalesPersonLocation;
SalesPersonWindow.focus();
} else {
window.name = "SalesOpener";
SalesPersonWindow_Width = 640;
SalesPersonWindow_Height = 566;
// center the window on the users screen
SalesPersonWindow_Left = (screen.availWidth - SalesPersonWindow_Width)/2;
SalesPersonWindow_Top = (screen.availHeight - SalesPersonWindow_Height)/2;
SalesPersonWindow_Params = "width=" + SalesPersonWindow_Width + ",height=" + SalesPersonWindow_Height + ",top=" + SalesPersonWindow_Top + ",left=" + SalesPersonWindow_Left + ",scrollbars";
SalesPersonWindow = window.open(strSalesPersonLocation,"winSalesPerson",SalesPersonWindow_Params);
}
}

function jsGlobal_CloseChildren() {
if (oHelpWin && oHelpWin.open && !oHelpWin.closed) {
oHelpWin.close();
}
if (SalesPersonWindow && SalesPersonWindow.open && !SalesPersonWindow.closed) {
SalesPersonWindow.close();
}
}

window.onunload = jsGlobal_CloseChildren;
window.defaultStatus = document.title;



