var j = "global";
var theTimer = "global";
j = -650;
	
function slide()
	{
	var theElement = "slideForm";
	var theTop = j + 'px';
	if (document.getElementById)
		{
		// this is the way the standards work
		var style2 = document.getElementById(theElement).style;
		style2.top = theTop;
		}
	else if (document.all)
		{
		// this is the way old msie versions work
		var style2 = document.all[theElement].style;
		style2.top = theTop;
		}
	else if (document.layers)
		{
		// this is the way nn4 works
		var style2 = document.layers[theElement].style;
		style2.top = theTop;
		}
	j = j + 10;
	if(j>120)
		{
		clearInterval(theTimer);
		}
	}
	
function moveIt()
	{
	theTimer = setInterval('slide()', 10);
	}
	
function waitForIt()
	{
	setTimeout('moveIt()', 5000);
	}