Index: trunk/htdocs/diagnosis/diagnosis.tpl.php
===================================================================
--- trunk/htdocs/diagnosis/diagnosis.tpl.php	(revision 1090)
+++ trunk/htdocs/diagnosis/diagnosis.tpl.php	(revision 1092)
@@ -1,4 +1,4 @@
 <?php include "../common/header.tpl.php"; ?>
-<table cellspacing="0" cellpadding="4" class="cycles">
+<table cellspacing="0" cellpadding="4" class="cycles" id="diagnosisResult">
 	<caption>
 		<?php echo _T("Diagnosis Result"); ?>
@@ -6,18 +6,22 @@
 	<tr>
 		<th>
+			<?php echo _T("Item"); ?>
+		</th>
+		<th>
 			<?php echo _T("Level"); ?>
 		</th>
 		<th>
-			<?php echo _T("Reason"); ?>
+			<?php echo _T("Result"); ?>
 		</th>
 		<th>
-			<?php echo _T("Suggestion"); ?>
+			<?php echo _T("Result/Suggestion"); ?>
 		</th>
 	</tr>
 <?php foreach ($notes as $note) { ?>
-	<tr>
-		<td><?php echo ucfirst($note['type']); ?></td>
-		<td><?php echo $note['reason']; ?></td>
-		<td><?php echo $note['suggestion']; ?></td>
+	<tr class="<?php echo $note['type']; ?>">
+		<td nowrap="nowrap" align="right"><?php echo $note['item']; ?></td>
+		<td nowrap="nowrap"><?php echo ucfirst($note['type']); ?></td>
+		<td nowrap="nowrap"><?php echo nl2br($note['result']); ?></td>
+		<td><?php echo nl2br($note['suggestion']); ?></td>
 	</tr>
 <?php } ?>
