function TrimString(sInString) {
   sInString = sInString.replace( /^\s+/g, "" );   // strip leading
   return sInString.replace( /\s+$/g, "" );        // strip trailing
}

function popAvailabilityPage(pageName, prodType, prodId, prodSubId, cssRef, colors) {
   var url = pageName + "?prodType=" + prodType + "&prodID=" + prodId + "&prodSubID=" + prodSubId + "&css=" + cssRef + "&colors=" + colors;
   window.open(url, 'mywin', 'left=50,top=50,width=700,height=500,toolbar=no,location=no,directories=no,status=yes,menubar=yes,scrollbars=yes,resizable=yes');
}

function popUnitMapPage(pageName, prodType, prodId, prodSubId, height, width, mapHeight, mapWidth, cssRef, colors) {
   var url = pageName + "?prodType=" + prodType + "&prodID=" + prodId + "&prodSubID=" + prodSubId + "&height=" + mapHeight + "&width=" + mapWidth + "&css=" + cssRef + "&colors=" + colors;
   window.open(url, 'mywin', 'left=50,top=50,width=' + width + ',height=' + height + ',toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=yes,resizable=yes');
}
