var href = document.location.href;
href = href.toLowerCase();
var myPage;
if (href.indexOf('freedownloads.htm') == -1)
{
	myPage = false;
}
else
{
	myPage = true;
}
document.write('<p align=right>');
if (myPage)
{
	document.write('<img src="images/freeDownloadsOrange.gif"');
	document.write(' class=wideButton>');
}
else
{
	document.write('<a href="freeDownloads.htm">');
	document.write('<img src="images/freeDownloadsSilver.gif"');
	document.write(' class=wideButton id=freeDownloads');
	document.write(' onmouseover="mouseOver(');
	document.write("'freeDownloads'");
	document.write(')"');
	document.write(' onmouseout="mouseOut(');
	document.write("'freeDownloads'");
	document.write(')" border=0>');
	document.write('</a>');
}
document.write('</p>');
