function confirmUrl(message, url) {
	if (confirm(message)) {
		document.location.href = url;
	}
} 

function ajaxGet(url, divId) {
    $.get(url, null, function(result) { $('#'+divId).html(result); });
}
