
function my_confirm (obj, msg, href) {
	if (confirm (msg)) {
		obj.href = href;
		return true;
	}

	return false;
}

function row_highlight (id, status) {
	var element = document.getElementById(id);

	if (element) {
		element.style.backgroundColor = status ? '#F7F7F7' : '';
	}
}


