function clickFlash() {
	hideForm();
	showFlash();
}

function releaseFlash() {
	showForm();
	hideFlash();
}

function hideForm() {
	for(var i=0; i < document.getElementsByTagName("input").length; i++) {
		document.getElementsByTagName("input")[i].className="hideContentForm";
	}
	for(var i=0; i < document.getElementsByTagName("form").length; i++) {
		document.getElementsByTagName("form")[i].className="hideContentForm";
	}
}

function showForm() {
	for(var i=0; i < document.getElementsByTagName("input").length; i++) {
		document.getElementsByTagName("input")[i].className="showContentForm";
	}
	for(var i=0; i < document.getElementsByTagName("form").length; i++) {
		document.getElementsByTagName("form")[i].className="showContentForm";
	}
}

function showFlash() {
	document.getElementById("flashDiv").className="showContentFlash";
}

function hideFlash() {
	document.getElementById("flashDiv").className="hideContentFlash";
}

<!--
// -----------------------------------------------------------------------------
// Globals
// Major version of Flash required
var requiredMajorVersion = 8;
// Minor version of Flash required
var requiredMinorVersion = 0;
// Revision of Flash required
var requiredRevision = 0;
// the version of javascript supported
var jsVersion = 1.0;
// -----------------------------------------------------------------------------
// -->