function selectActualCart(strName, exeModuleUrl, enterCartName, newCartName, noTextEntered) {
	form_actual_cart = document.getElementById("actual_cart");

	if (strName == "new") {
		if (is.ie) {
			var strReturn = showModalDialog(exeModuleUrl + "?_ENTER_CART_NAME=" + encodeURIComponent(enterCartName), "", "status:no; center:yes; help:no; minimize:no; dialogWidth=260pt; dialogHeight=120pt");
		}else{
			var strReturn = window.prompt(enterCartName, newCartName);
		}
		if (!strReturn) return 0;
		if (strReturn == "") {
			alert(noTextEntered);
			return;
		}else{
			form_actual_cart.cart_name.value = strReturn;
			form_actual_cart.submit();
		}
	 }else{
		form_actual_cart.submit();
	 }
}
