<!--
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 slide(what)
{
	var theDivs = document.getElementsByTagName('div');
	for(var i = 0; i < theDivs.length; i++)
	{
		if(theDivs[i].id.search('slide') == 0)
		{
			theDivs[i].style.display = 'none';
		}
	}
	document.getElementById('slide'+what).style.display = 'block';
}
window.onload = function()
{
	var theDivs2 = document.getElementsByTagName('div');
	for(var j = 0; j < theDivs2.length; j++)
	{
		if(theDivs2[j].id.search('slide') != -1)
		{
			theDivs2[j].style.display = 'none';
			
			{
		if(theDivs2[j].id.search('slide0') != -1)
		{
			theDivs2[j].style.display = 'block';
		}
	}
}
}
}
//-->

