<!--
function show()
{
	if (document.all) document.all.flashcontent.style.visibility="visible";
	if (document.getElementById) document.getElementById("flashcontent").style.visibility="visible";
}

function hide()
{
	if (document.all)	document.all.flashcontent.style.visibility="hidden";
	if (document.getElementById) document.getElementById("flashcontent").style.visibility="hidden";
}
//-->