function confirmDelete(what) {
	if (confirm ("Are you sure you want to delete this " + what)) {
		return true;
	} else {
		return false;
	}
}
function doHideShow ( ohide, oshow ) {
	document.getElementById (ohide).style.display = "none";
	document.getElementById (oshow).style.display = "";
}
function SetDropDown (cForm, cCtrl, nId) {
	cmb = document.forms[cForm].elements[cCtrl];
	for (counter = 0; counter < cmb.options.length; counter++) {
		if (cmb.options[counter].value == nId) {
			cmb.options[counter].selected = true;
		}
	}
}

