function getYear() {
	 var today = new Date();
	 x = today.getYear();
	 var y = x % 100;
	 y += (y < 38) ? 2000 : 1900;
	 return y+" ";
}
/* Added for ENH-33 to display the metanav*/
function showPoductsPage(strProductName)
{
	if(strProductName == "Reference Center Home") {
		document.product.action="/wb/Home";
		document.product.submit();
	} else if(strProductName == "World Book Kids") {
		document.product.action="/kids/Home";
		document.product.submit();
	} else if(strProductName == "Encyclopédie Découverte") {
		document.product.action="/decouverte/home";
		document.product.submit();
	}else if(strProductName == "World Book Advanced") {
		document.product.action="/advanced/home";
		document.product.submit();
	}else if(strProductName == "Research Tools") {
		document.product.action="/researchtools/home";
		document.product.submit();
	}else if(strProductName == "Research Libraries") {
		window.parent.location.href="http://wbrl.worldbookonline.com";
	}
	return false;
}
/*************		BEGIN FUNCTION TO EXPAND THE FOOTER DROP DOWN 	*************/
function setDivPosition(which){
	var divToPos = document.getElementById(which);
	divToPos.style.display = 'block';
}
function hideRollOverDiv(which){
	var divToHide = document.getElementById(which);
	divToHide.style.display = 'none';
}
/*************		END FUNCTION TO EXPAND THE FOOTER DROP DOWN 	*************/
/* ENH-33 ends here*/