function ConfirmDelete()
{
	var frm = document.IEForm;
	if (frm.HTML_TYPE.value == "WSRP") return true;  //no popups for WSRP


	//Show popup & set value based on input.
	var ret = confirm("Are you sure you want to delete your order?");
	if (ret)
	{
		//Delete
		frm.CATALOGUE_CONFIRM.value = 1;
		return true;
	}
	else
	{
		//No Delete
		return false;
	}

}


function ApplyToAll(chk)
{
	var ApplyID = chk.id;
	//format: APPLY_TO_ALL + BundleRef + "_" + itemno
	ApplyID = ApplyID.substr(12);
	var itemno = parseInt(ApplyID.substr(ApplyID.indexOf('_')+1));
	var BundleRef = ApplyID.substr(0,ApplyID.indexOf('_'));

	//divs have the format:
	//DIV_BUNDLE_IDENTIFIER_bundleref_itemno
	var divId = 'DIV_BUNDLE_IDENTIFIER' + BundleRef + '_';
	var i = itemno + 1;

	var currentDivID = divId + i.toString();
	var currentDiv = document.getElementById(currentDivID);
	while (currentDiv != null)
	{
		if (chk.checked)
		{
			currentDiv.style.display = "none";
		}
		else
		{
			currentDiv.style.display = "block";
		}
		i++;
		currentDivID = divId + i.toString();
		currentDiv = document.getElementById(currentDivID);
	}

}
