//Manual Scroller- © Dynamic Drive 2001
//For full source code, visit http://www.dynamicdrive.com

//specify speed of scroll (greater=faster)
var speed = 3

iens6 = document.all || document.getElementById;
ns4 = document.layers;

function scroll1( id, height ) {
	
	var html = '';
	var container = 'container' + id;
	var content = 'content' + id;
	
	var speed = 2;

	iens6 = document.all || document.getElementById;
	ns4 = document.layers;
	
	if (iens6) {
	
		html += '<div id="' + container + '" style="position:relative;height:' + height + 'px;overflow:hidden;border:0px ridge white; background-color: transparent;">';
		html += '<div id="' + content + '" style="position:absolute;left:0px;top:0px;  background-color: transparent;">';
		
		document.write( html );
	}
	
}