<!--

// function ScrollMarquee() 

ScrollSpeed = 200
ScrollChars = 1
function ScrollMarquee() {
window.setTimeout('ScrollMarquee()',ScrollSpeed);

var msg = document.marquee1.text.value; 
document.marquee1.text.value =
msg.substring(ScrollChars) +
msg.substring(0,ScrollChars); 
}


// Function to OPEN Browser Window for Web Link		 

		<!-- function openWin -->
		
		winwid = 600
		winlen = 400
		toppos = 0
		leftpos = 0
		
		if (screen) {
		winwid = screen.width-400
		winlen = screen.height-400
		toppos = 10
		leftpos = 10
		}
						
		function openWin(URL){
		Win=window.open(URL,"viewer","toolbar=1,location=0,directories=0,status=0,menubar=1,scrollbars=1,resizable=1,width="+winwid+",height="+winlen+",left="+leftpos+",top="+toppos+"")
		}

//-->