make it simple!!!

i am having following DML file i want to extract only highlighted area using sed or awk oneliner..

i wrote the following sed command for this ..
it works fine but its too complex i guess.. can any one help me out to make it simpler..

thanks in advance..
vidya..

How about:

sed 's/.*) \([^ ;]*\).*/\1/g' 

oh great thanks..