﻿function showHistory(id) {
	jQuery('#' + id).show();
	jQuery('#show' + id).hide();
	jQuery('#hide' + id).show();
}

function hideHistory(id) {
	jQuery('#' + id).hide();
	jQuery('#show' + id).show();
	jQuery('#hide' + id).hide();
}

function deleteAttachment(sid, aid) {
	if (confirm('Are you sure you want to delete this attachment? If you click \'OK\', the attachment will immediately be deleted, and all unsaved changes you have made will be lost.')) {
		location.href = '/CSM/DeleteAttachment.aspx?id=' + sid + '&aid=' + aid;
	}
}

function onCheckBoxChange(id, otherID) {
	if (jQuery('#' + id).attr('checked')) {
		jQuery('#' + otherID).attr('checked', '');
	}
}
