////////////// hyperlink function calls //////////////////

function thisMovie(movieName) 
{
	if (navigator.appName.indexOf("Microsoft") != -1) {
		return window[movieName];
	} 
	else {
	return document[movieName];
	}
}
function sendToAS(value,value2)
{
	thisMovie("flashContent").callAS(value,value2);
}


////////////// show div //////////////////


function showdiv() {
	if (document.getElementbyId) { // DOM3 = IE5, NS6
		document.getElementbyId('footer').style.visibility = 'visible';
	}
	else {
	if (document.layers) { // Netscape 4
		document.footer.visibility = 'visible';
	}
	else { // IE 4
		document.all.footer.style.visibility = 'visible';
	}
	}
} 
