/**
 * Change these variables as necessary.
 */
var index = 'index.shtml';
var footer_html = '<div style="width: 750px; text-align: center; padding-top: 10px;">Powered by <a href="http://www.cvwp.com/solutions.cfm" target="_blank">CrystalVision</a></div>';

/**
 * Outputs a footer message if this page is the index of the site.
 */
function write_footer()
{	
	/**
	 * Determine what the name of the currently executing page is.
	 */
	var thisPage = new String(location.href);
	var thisPage = thisPage.substring(thisPage.lastIndexOf("\/")+1,thisPage.length);
	
	/**
	 * If this is the home page, include the addition footer.
	 */
	if (thisPage == index || thisPage == '')
	{
		document.writeln( footer_html );
	}
}