<!--
ie4 = (document.all)? true:false
function showit() {
if (ie4) {
	blink1.style.visibility = "visible"
}
setTimeout("hideit()",400)
}

function hideit() {
if (ie4) {
	blink1.style.visibility = "hidden"
}
setTimeout("showit()",400)
}
// -->
