//Enter total number of questions:
var totalquestions=6

//Enter the solutions corresponding to each question:
var correctchoices=new Array()
correctchoices[1]='disagree' //question 1 solution
correctchoices[2]='disagree' //question 2 solution, and so on.
correctchoices[3]='disagree'
correctchoices[4]='disagree'
correctchoices[5]='disagree'
correctchoices[6]='disagree'

var questions=new Array()
questions[1]='There is an old saying that "The law is not a search for truth: the law is a search for proof."  The "truth" may turn out to be an elusive concept.  What seems true to one may not seem true to another.  The judge or arbitrator assigned to a case will hear from both sides of a dispute before making a decision.  The judge or arbitrator will not simply make a decision based upon what one side says.  There will always be point and counterpoint.  Unlike criminal proceedings where the prosecutor seeks conviction and punishment of the defendant, civil proceedings seek resolution of a dispute. Sometimes the resolution lies closer to the middle.  <p>'
questions[2]='The better lawyers constantly re-evaluate their client\'\s position as more is learned about their client\'\s case and the claims of the opposing party.  A lawyer\'\s mental agility and creativity will win more cases than tenacity and a narrow focus on the presentation of the client\'\s position.  General MacArthur won the war in the Pacific by constantly assessing the enemy\'\s strengths, and skipping over islands where their positions were not strategic to MacArthur\'\s overall plan of winning.  On the other hand, Germany sacrificed 2.1 million troops in their unsuccessful 1000-day siege of Leningrad.  Flexibility and re-evaluation are the keys to a successful resolution.<p>'
questions[3]='It is true that a lawyer should not be trying to win a popularity contest.  However, lawyers\'\ services are different than those provided by a dentist, for example.  A dentist works on a tooth and needs to know little or nothing about the patient\'\s business or personal life.  The services of a lawyer are different.  That is because the client is always more important than the legal problem presented.  The legal problem will pass.  It will eventually be resolved one way or the other.  The client, however, will go on with their business and/or personal life.  The lawyer needs to have the bigger picture.  Unless the lawyer and the client have a good working relationship involving candor, the lawyer won\'t be able to serve the client\'\s best and larger interests.  <p>'
questions[4]='The lawyer should have sufficient competence in his/her field of law so that the client is not charged for the development of the lawyer\'\s learning curve. But the law changes.  The law is not a lake.  It is a river.  Moreover, the law sways to the winds of political, social, and economic change.  Before your lawyer presents a legal brief or memorandum to the court, your lawyer needs to make sure he/she is presenting the most current assessment of the law to the court.  <p>'
questions[5]='When you speak with your lawyer on the telephone, it\'\s most likely an occasion where the lawyer is conveying information to you or receiving information from you that will help the lawyer achieve a successful resolution of your legal matter.  Evidence wins the case.  Not arguments.  The better the evidence, the more persuasive the argument will be.  <p>'
questions[6]='The initial consultation is the most important contact you will have with your lawyer.  That is when the matter is reviewed, the merits are evaluated, the unknowns are assessed, possible strategies and options are analyzed, the costs of legal services are projected, and a decision (often preliminary) is reached regarding whether or not to proceed with the matter. <p>'


/////Don't edit beyond here//////////////////////////

function gradeit(){
var incorrect=null
for (q=1;q<=totalquestions;q++){
	var thequestion=eval("document.myquiz.question"+q)
	for (c=0;c<thequestion.length;c++){
		if (thequestion[c].checked==true)
		actualchoices[q]=thequestion[c].value
		}
		
	if (actualchoices[q]!=correctchoices[q]){ //process an incorrect choice
		if (incorrect==null)
		incorrect=q
		else
		incorrect+="/"+q
		}
	}

if (incorrect==null)
incorrect="a/b"
document.cookie='q='+incorrect
if (document.cookie=='')
alert("Your browser does not accept cookies. Please adjust your browser settings.")
else
window.location="client_quiz_results.htm"
}

