<!--
// JScript File
var bNetscape4plus = (navigator.appName == "Netscape" && navigator.appVersion.substring(0,1) >= "4");
var bExplorer4plus = (navigator.appName == "Microsoft Internet Explorer" && navigator.appVersion.substring(0,1) >= "4");
function StartFloat() {
if( bExplorer4plus ) {
	document.all.Floater.style.pixelTop  = document.body.scrollTop + document.body.clientHeight - document.all.Floater.offsetHeight - 67;
	document.all.Floater.style.visibility = 'visible';
	if (document.body.clientHeight >= (document.body.scrollHeight / 2)) {document.all.Floater.style.visibility = 'hidden';}
	}
else if( bNetscape4plus ) {
	document.getElementById('Floater').style.top = top.pageYOffset + document.body.clientHeight - 148;
	document.getElementById('Floater').style.visibility = 'visible';
	if (document.body.clientHeight >= (document.body.scrollHeight / 2)) {document.getElementById('Floater').style.visibility = 'hidden';}
	}
if ( bExplorer4plus ) { window.onscroll = Float; }
else { setInterval('Float()', 100); }
}
function Float() {
if ( bExplorer4plus ) { document.all.Floater.style.pixelTop = document.body.scrollTop + document.body.clientHeight - document.all.Floater.offsetHeight - 67; }
else if ( bNetscape4plus ) { document.getElementById('Floater').style.top = top.pageYOffset + document.body.clientHeight - 148; }
} 
//-->
