// Total number of questions 
var TotalNoOfQuestions = 8;

// Total number of option in each question
var TotalNoOfOptions = 5;

// an array that stores the results of each question 
var result =  new Array(TotalNoOfQuestions);

// The question set
var Question = new Array(TotalNoOfQuestions);
// Question 1
	Question[0] = "(a) Try to <u>find out the causes</u> of the conflict: e.g. clashes between personal and team goals, work procedures, interpersonal relationships";

// Question 2
	Question[1] = "(b) <u>Consider</u> each other's <u>viewpoints</u>.";


// Question 3
	Question[2] = "(c) <u>Voice</u> your feelings and viewpoints towards the issue.";


// Question 4
	Question[3] = "(d) <u>Be careful</u> what you say and how you <u>react</u> in relation to the disagreement.";


// Question 5
	Question[4] = "(e) Make use of <u>humor</u> to ease tension.";


// Question 6
	Question[5] = "(f) Look for <u>alternative ways</u> of doing the project that can avoid the disagreement.";


// Question 7
	Question[6] = "(g) Make sure that<u> everybody is satisfied</u> with the final solution.";


// Question 8
	Question[7] = "(h) <u>Repair the damage</u> the disagreement made on group relationships and the project.";

