var one = "mailto:";
var two = "kristina";
var three = "@";
var four = "kristinawillemse";
var five = ".com";
var mailadd = one + two + three + four + five;
var t;

function scroll(dir, theObjectID, limit, stop) {
	if (limit || limit === 0) theLimit = limit
	if (dir) theDir = dir
	if (theObjectID) theID = theObjectID
	
	theTop = parseInt(document.getElementById(theID).style.top)
	
	if (!theTop) {
		theTop = 0
	}
	
	theScroller = document.getElementById(theID)
	factor = 15
	if (theDir=="down") {
		if (theTop - factor < theLimit) {
			theScroller.style.top = theLimit + "px"
		} else {
			theScroller.style.top = (theTop - factor) + "px"
		}
	} else {
		if (theTop + factor > theLimit) {
			theScroller.style.top = theLimit + "px"
		} else {
			theScroller.style.top = (theTop + factor) + "px"
		}
	}
	if (stop) {
		clearTimeout(t)
	} else {
		t = setTimeout("scroll()", 100)
	}
}

function scroller(dir, theObjectID, theLimit, stop) {
	
}
