/*
 * this code is taken from
 *LexisNexis/j2ee-apps/LexisNexis/LexisNexis.war/catalog/catalog_content.jsp
 */
function displayRow() {
	var row = document.getElementById("captionRow");
	row.style.display = '';
	var row1 = document.getElementById("advanceRow");
	row1.style.display = '';
}
function displayRow2() {
	var row = document.getElementById("captionRow");
	row.style.display = 'none';
	var row1 = document.getElementById("advanceRow");
	row1.style.display = 'none';
}
