You've changed contl with dashboard in the URI.
If you want to redirect based on the id number, you can try this:
Code:
RewriteEngine on
RewriteCond %{QUERY_STRING} ^dashboard([&]+)id=([0-9]+)
RewriteCond %2 ^008$
RewriteRule ds/index.jsp(.*) http://www.google.com? [R=301]
RewriteCond %{QUERY_STRING} ^dashboard([&]+)id=([0-9]+)
RewriteCond %2 ^025$
RewriteRule ds/index.jsp(.*) http://www.yahoo.com? [R=301]
Cheers