// JavaScript Document
<!--

function actAnchor() {

		var aTag = document.getElementById('act').getElementsByTagName('A');
		for(var no=0; no<aTag.length; no++) {
        aTag[no].onmouseout = function() { this.style.textDecoration = 'none'};	
        aTag[no].onmouseover = function() { this.style.textDecoration = 'underline'};
		}
}
-->