function insStartCheck( count )
{
	if( count > 5 )
	{
		count = 5;
	}

    for( i=0; i<count; i++ )
    {
    	document.write( '<img src="/start_on.png" width="16" height="16" alt="StartON" />' );
    }
    for( i=count; i<5; i++ )
    {
    	document.write( '<img src="/start_off.png" width="16" height="16" alt="StartON" />' );
    }
}
