
function doCreateComment(e) {
	if (CurrentUser!="Anonymous") {
		$(e).hide();
		$.ajaxSetup( { async : false, cache : false } );
		var URL = 'Comment?OpenForm&page=' + document.getElementsByName("h_Key")[0].value;
		//alert(URL);
		$('.comment-form-panel').load(URL);
	} else {
		alert('You must be signed in to post a comment on this page.');
		document.forms["login-form"].username.focus();
		
	}
}

function doSubmitComment(e) {
	$('form', $('.comment-form-panel')).ajaxSubmit(
		{
			target :$('.comment-form-panel'), 
			success : function(response) {
			            $('.comment-form-panel').html(response);
						//$('p.message').fadeOut('slow');
						$('a.button').show();
			       		} 
	});
}

function doCancelComment(e) {
	$('.comment-form-panel').html('<p class="message">Comment submission cancelled.</p>');
	//$('P.Message').fadeOut('slow');
	$('a.button').show();
}