// JavaScript Document
function HideContent(d) {
	if(d.length < 1) { return; }
	document.getElementById(d).style.display = "none";
}
function ShowContent(d) {
	if(d.length < 1) { return; }
	document.getElementById(d).style.display = "block";
}
function setHome(url) { 
	document.body.style.behavior='url(#default#homepage)';
	document.body.setHomePage(url);
}
