function flash(vis)
{
	if(vis)
	{
		v='visible'
		to=1800
	}
	else
	{
		v='hidden'
		to=1000
	}
	document.getElementById('ue').style.visibility=v
	setTimeout('flash('+!vis+')',to)
}

// Scroller
if(window.attachEvent)
{
	attachEvent('onscroll',function(){document.getElementById('marq').style.bottom='1';document.getElementById('marq').style.bottom='0'})
	attachEvent('onload',function(){document.getElementById('marq').style.visibility='visible'})
}