var loader = new Image();
loader.src = 'images/loader_red.gif';
function doNav(theUrl) {
	document.location.href = theUrl;
}
function pleaseWait(id) {
	$('pleaseWait'+id).show();
}
function showLoader() {
	$('loaderProcessing').style.display = 'block';
}
function publishEnews(id) {
	if(confirm('Are you sure you want to publish this enews and send it out to the mailing list?')) {
		var url = $(id).href;
		doNav(url);
	}
	return false;
}
