function ConfigureIT(pstrContentRef, plngSystemTypeID, plngRangeTypeID, pstrNavigationRange) {
	document.frmConfigureIT.action = mstrConfigureITURL;
	document.frmConfigureIT.ContentRef.value=pstrContentRef;
	document.frmConfigureIT.SystemTypeID.value=plngSystemTypeID;
	document.frmConfigureIT.RangeTypeID.value=plngRangeTypeID;
	document.frmConfigureIT.NavigationRange.value=pstrNavigationRange;
	document.frmConfigureIT.submit();
}

function AddRecommendationToBasket(pstrContentRef, plngSystemTypeID, plngRangeTypeID, pstrNavigationRange) {
	document.frmConfigureIT.action = mstrConfigureITURL + '?inpAddRecommendationToBasket=True&inpHideWarningMessages=True';
	document.frmConfigureIT.ContentRef.value=pstrContentRef;
	document.frmConfigureIT.SystemTypeID.value=plngSystemTypeID;
	document.frmConfigureIT.RangeTypeID.value=plngRangeTypeID;
	document.frmConfigureIT.NavigationRange.value=pstrNavigationRange;
	document.frmConfigureIT.submit();
}
