function ClearInput(value, id) { // This calls our function ClearInput, and the two variables we will need for it to function the original value and the id.
	var input = document.getElementById(id); // Gets the input field based on its id.

	if(value == input.value) { // If the default value is equal to the current value.
		input.value = ''; // Empty It.
	} else { // Else the value is not equal to the current input field value.
		input.value = input.value; // Leave it the same.
	} // End Else.
} // Close Function.

var scrollspeed		= "1";		// SET SCROLLER SPEED 1 = SLOWEST
var speedjump		= "20";		// ADJUST SCROLL JUMPING = RANGE 20 TO 40
var startdelay 		= "3"; 		// START SCROLLING DELAY IN SECONDS
var nextdelay		= "0"; 		// SECOND SCROLL DELAY IN SECONDS 0 = QUICKEST
var topspace		= "0px";	// TOP SPACING FIRST TIME SCROLLING
var frameheight		= "75px";	// IF YOU RESIZE THE WINDOW EDIT THIS HEIGHT TO MATCH

current = (scrollspeed)

function HeightData(){
AreaHeight=dataobj.offsetHeight;
if (AreaHeight==0){
setTimeout("HeightData()",( startdelay * 1000 ));
}
else {
ScrollNewsDiv();
}}

function NewsScrollStart(){
dataobj=document.all? document.all.NewsDiv : document.getElementById("NewsDiv");
dataobj.style.top=topspace;
setTimeout("HeightData()",( startdelay * 1000 ));
}

function ScrollNewsDiv(){
dataobj.style.top=parseInt(dataobj.style.top)-(scrollspeed) + 'px';
if (parseInt(dataobj.style.top)<AreaHeight*(-1)) {
dataobj.style.top=frameheight;
setTimeout("ScrollNewsDiv()",( nextdelay * 1000 ));
}
else {
setTimeout("ScrollNewsDiv()",speedjump);
}}