var browser_type=navigator.appName;
var browser_version=parseInt(navigator.appVersion);
var check;
//if NS 6
if (browser_type=="Netscape"&&browser_version>=5)
check = 1;
//if IE 4+
else if (browser_type=="Microsoft Internet Explorer"&&browser_version>=4)
check = 1;
//if NS4+
else if (browser_type=="Netscape"&&browser_version>=4)
window.location.replace("false.html");
//Default goto page (NOT NS 4+ and NOT IE 4+)
else
check = 1;

function moveup()
	{
	var stop = 5;		
	oldtoppos = parseInt(document.getElementById("movetext").style.top);
	newtoppos = oldtoppos + 3;
	if (newtoppos > stop)
		{ toppos = stop+"px"; }
	else
		{ toppos = newtoppos+"px"; }
	document.getElementById("movetext").style.top = toppos;
	aktiv = setTimeout("moveup()",40);
	}
function movedown()
	{
	var stop;
	var halt;
	halt = parseInt(document.getElementById("stoppx").style.height);
	stop = halt*-1;
	oldtoppos = parseInt(document.getElementById("movetext").style.top);
	newtoppos = oldtoppos - 3;
	if (newtoppos < stop)
		{ toppos = stop+"px"; }
	else
		{ toppos = newtoppos+"px"; }
	document.getElementById("movetext").style.top = toppos;
	aktiv = setTimeout("movedown()",40);
	}
function endmove()
	{
	clearTimeout(aktiv);
	}

function shownavi(bname)
	{
	document.getElementById(bname).style.visibility = "visible";
	}
function hidenavi(bname)
	{
	document.getElementById(bname).style.visibility = "hidden";
	}
