function Process()
{                   
	
	var length = answers.length;
	var wrong = "";
	var output;
	var totalWrong = 0;
	var temp  
	
	for(i = 0; i < length; i++)
	{ 
		temp = "";
		
	    	temp = document.myform.elements[i].options[document.myform.elements[i].selectedIndex].value;
	   	   			  
		if( temp != answers[i])
		{	     		
			wrong += (i+1) + "\n";
			totalWrong++;
		}
 	
     }
     
     	
	if(totalWrong)
		output = "The following are incorrect:\n\n" + wrong;  
	else
		output = "Correct!  Hit \"ok\" to continue to the next exercise.";

     alert(output);
	
	if(totalWrong == 0)
	{	
		window.location.replace(url);      
	
		return(1);
		         
	}                 
	
	return(0);
}    