function reloadFrames() {
	parent.frameHeader.document.location.href = "index.cfm?fuseaction=home.header";
	parent.frameContent.document.location.href = "index.cfm?fuseaction=home.welcome";
	parent.frameMenu.document.location.href = "index.cfm?fuseaction=home.menu";
}

function expand(txtDiv,imgID,expandSRC,contractSRC) {
	// Get the current display value of the text layer
	currDisplay = document.getElementById(txtDiv).style.display;
	// Figure out what we'll change things to
	if (currDisplay == "none") {
		newDisplay = "block";
		imgSRC = contractSRC;
	} else {
		newDisplay = "none";
		imgSRC = expandSRC;
	}
	// Change the image
	document[imgID].src = imgSRC;
	// Toggle the layer
	document.getElementById(txtDiv).style.display = newDisplay;
}