<!--
function openHelpWindow(istrQStr, strIncludesPath){
	var newWindow = null;
	intTop = (screen.height)?(screen.height - 430)/2:100;
	intLeft = (screen.width)?(screen.width - 530)/2:100;
	strOptions="width=530,height=430," + 
		"top=" + intTop + ",left=" + intLeft + "," + 
		"scrollbars=yes,location=no,directories=no," + 
		"status=no,menubar=no,toolbar=no,resizable=yes";
	switch (istrQStr){
		case "@home":
			istrQStr = istrQStr + "&shipmentnum=" + document.FORM2.strHoldShipment.value;	
			break;
		default:
			break;
	}
	newWindow = window.open(strIncludesPath + "/CORE_HelpTempl.asp?id=" + istrQStr, "ABXWindow", strOptions);
	newWindow.focus();
}
//-->

<!-- 
//**************************************************************************
//* Function: openWindow
//*
//* Purpose: Opens a pop-up window
//*
//* Author: Christian Wilhite
//*
//* Create Date: 10/16/2000
//*
//* Usage: openWindow(url,window width, window height, X-coordinate, Y-coorindate,
//*                   location bar (yes or no), toolbar (yes or no), resizable (yes or no),
//*                   scrollbars (yes or no), status bar (yes or no), title bar (yes or no)
//*         Example: openWindow('page.asp',600,400,100,100,0,0,1,0,0,0)
//*         Note: Not specifying yes/no values causes it to default to no
//*
//* Last modified:
//*   11/30/2000 - Set focus on new window
//*                (Christian Wilhite)
//**************************************************************************
var popupWin; //holds the popup windows
function openWindow(url,width,height,xCrd,yCrd,loc,tool,re,scroll,stat,title) {
	if (popupWin) {
		// close old window before we open a new one
		popupWin.close();
	}
  popupWin = window.open(url, 'popup', 'width='+width+',height='+height+',left='+xCrd+',top='+yCrd+',location='+loc+',toolbar='+tool+',resizable='+re+',scrollbars='+scroll+',status='+stat+',titlebar='+title);
  popupWin.focus();
}
// End the hiding here. -->
