function showhide(id,action) {
	if (document.getElementById) {
		obj = document.getElementById(id);
		if (obj.style.display == "none") {
			if (action == 1) {
				obj.style.display = "";
			}
		} else {
			obj.style.display = "none";
		}
	}
}

function confirmDelete(confirmName,messageDelete) {
	if (!confirm('Delete "' + confirmName + '" ' + messageDelete + '?')) {
		return false;
	}
}

function validatePWD(fieldName,message) {
	if (!fieldName) {
		alert(message);
		return false;
	}
}
