<!--

// 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+"")
		}
		
// Cycling News				
		
		adImages = new Array("http://www.wemtownhall.co.uk/_SITE/_assets/box/EV_lorddance.png", "http://www.wemtownhall.co.uk/_SITE/_assets/box/EV_larkrise.png")
	  adURL = new Array("220","204")
		thisAd = -1
	  imgCt = adImages.length

	function rotate() {
		if (document.images) {
			thisAd++
			if (thisAd == imgCt) {
				thisAd = 0
			}
			document.adBanner.src=adImages[thisAd]
		  	setTimeout("rotate()", 6 * 1000)
	  	}
	}	
	
	function newLocation() {
		document.location.href = "http://www.wemtownhall.co.uk/prEvent.php?ref=" + adURL[thisAd] + "&page="
	}

//-->
