hv=0; currentTag=0;
ua=navigator.userAgent; v=navigator.appVersion.substring(0,1);

if((ua.lastIndexOf("MSIE") != -1) && (v != '1') && (v != '2') && (v != '3')) {
	document.onmouseover=ws_on;	
	document.onmouseout=ws_off;
	window.setInterval(bitnet_kelapkelip,300);
}
function bitnet_kelapkelip() {
	if (hv=='none') {hv='underline'} else {hv='none'}
	if (currentTag) { currentTag.style.textDecoration=hv }
}
function ws_on() {
	src=event.toElement;
	if (src.tagName=="A") {
		currentTag=src; hv='underline'; src.style.textDecoration=hv;
	}
}
function ws_off() {
	src=event.fromElement;
	if (src.tagName=="A") {
		currentTag=0; hv='none'; src.style.textDecoration=hv;
	}
}
