function blinkElement( as_name )
{
	lo_elementStyle						= document.getElementById( as_name ).style;
	
	lo_elementStyle.backgroundColor		= 'red';
	setTimeout( "lo_elementStyle.backgroundColor = \"transparent\"", 250 );
}
