﻿var span = null;

function populateBlogAuthorInfo(id, spanID)
{
	span = document.getElementById(spanID);
	BlogService.GetAboutAuthor(id, onSuccessAboutAuthor);
}

function onSuccessAboutAuthor(aboutAuthor)
{
	span.innerHTML = aboutAuthor;
	// Force browser to centre the popup
	window.scrollBy(0,1);
	window.scrollBy(0,-1);
}
