function openNews(no) {
	width = 718
	height = 582
	left1 = (screen.width/2) - width/2;
	top1 = (screen.height/2) - height/2;
	url = "newsContent.asp?NewsID=" + no
	name = "News"
	window.open(url,name,"toolbar=no, width="+width+", height="+height+", top="+top1+", left="+left1+", scrollbars=1");
}

function setValue(a, e) {
	var n = a.selectedIndex
	document.getElementById(e).value = a.options[n].text
}

function marqueeStart(a){
	var d = document.getElementById(a)
	d.start()	
}

function marqueeStop(a){
	var d = document.getElementById(a)
	d.stop()	
}