
function j_module_authors_public_authors_swapData (sAuthor, sColTitle, sEmail, sArticle, sImage, sLink) {

	var obj;
	
	// columnist name
	obj = j_common_getElement ('modAuthors_swap_columnistName');
	if (obj) {
		obj.innerHTML = sAuthor;
	}
	
	// column title
	obj = j_common_getElement ('modAuthors_swap_columnTitle');
	if (obj) {
		obj.innerHTML = sColTitle;
	}
	
	// email
	obj = j_common_getElement ('modAuthors_swap_email');
	if (obj) {
		obj.innerHTML = sEmail;
	}
	
	// Article
	obj = j_common_getElement ('modAuthors_swap_article');
	if (obj) {
		obj.innerHTML = sArticle;
	}
	
	// Link
	obj = j_common_getElement ('modAuthors_swap_link');
	if (obj) {
		obj.href = sLink;
	}
	
	// Image
	obj = j_common_getElement ('modAuthors_swap_img_src');
	if (obj) {
		obj.src = sImage;
	}
	
	// Image Link
	obj = j_common_getElement ('modAuthors_swap_img_link');
	if (obj) {
		obj.href = sLink;
	}
}