Drag and drop multiple

This drag and drop has five correct answers which must be dragged to the target to get the “correct” popup window. Any other selection gets the “incorrect” popup. The problem is that if the last item in the list is selected along with either one or both of the incorrect answers, they get a “correct” popup. It doesn’t matter which item I put last in the list, whichever is last gives the misfired answer. The learner must be able to choose any option and get an answer. Hereis my code and here is a link to the drag and drop online:
http://www.charlenecross-design.com/CheckYourUnderstanding8.swf
answer.onRelease = function(){

if (accept && process && backorder && refunds && produce.hitTest ("_root.correct" )){

getURL(“javascript:popup=window.open(‘correct.swf’,‘reports’,‘width=398,height=303,left=250 px,top=170,scrollbars=yes,resizable=no’);popup.focus ();void(0);”);
}else{

getURL(“javascript:popup=window.open(‘5_5_answer.swf’,‘reports’,‘width=398,height=303,left=250 px,top=170,scrollbars=yes,resizable=no’);popup.focus ();void(0);”);

}}

Help is greatly appreciated