function dropItems (maxItems) {
	speed = 1;
	topDistance = 100;
	items = maxItems;
	y = -10;
	ob = 1;
	if (navigator.appName == "Netscape") {
		v=".top=",dS="document.",sD="";
	} else {
		v=".pixelTop=",dS="",sD=".style";
   }
}

function scrollItems () {
	if (ob < items + 1) {
		objectX = "object" + ob; 
		y += 10; 
		eval(dS + objectX + sD + v + y);
		if (y < topDistance) setTimeout("scrollItems()", speed);
		else y = -50, topDistance += 40, ob += 1, setTimeout("scrollItems()", speed);
   }
}

function loadSubs (docURL) {
	parent.right.location.href = docURL;
}

