function clearSelect(id) {
	if (document.getElementById) {
		var target = document.getElementById(id);
		target.selectedIndex = "0";
	}
}
function clearInput(id) {
	if (document.getElementById) {
		var target = document.getElementById(id);
		target.value = "";
	}
}
function clearChecked(id) {
	if (document.getElementById) {
		var target = document.getElementById(id);
		target.checked = false;
	}
}
function addFormMultiple(name,max) {
	if (document.getElementById) {
		total = name + "Total";
		var totalId = document.getElementById(total);
		if (totalId.value == max) {
			alert("You have reached the maximum limit for new items. Please save and re-edit this item to add more.");
			return true;
		} else {
			totalId.value++;
			formTarget = name + "Item" + totalId.value;
			var target = document.getElementById(formTarget);
			target.style.display = "block";
		}
	}
}
