//----------------------------------------------------------------------
// File:  Popup.js 
// Author: Robert Abrams III
// Company:  Utilant L.L.C.
// Description:  Enables users to open popup windows of a fixed width,
// devoid of an address bar and any navigation features.
// ---------------------------------------------------------------------

function ShowPopup(url, width) {
	window.open(url, null, "width=" + width + ",menubar=0,toolbar=0,location=0,scrollbars=1");
} // end ShowPopup
