<?php

// Is the translation file present ?
include("lang_en.php");

/* ----------------------------------------------------------------------------
                Mounts
---------------------------------------------------------------------------- */
$mounts_result .= "
<br />
<table align=\"center\" border=\"1\" cellpadding=\"0\" cellspacing=\"0\">
        <tr>
                <th>$msg_mounts</th>
        </tr>
        <tr>
                <td>
                        <table border=\"0\">
				<tr>
			        	<td>$msg_mount</td>
					<td>$msg_size</td>
					<td>$msg_free</td>
					<td>$msg_used</td>
					<td width=\"100\">$msg_usage</td>
					<td>$msg_percent</td>
				</tr>";													
$count=1;
while ($count < sizeof($x)) {
	$mounts_result .= "
				<tr>
					<td>$mount[$count]</td>
					<td>$size[$count]</td>
					<td>$avail[$count]</td>
					<td>$used[$count]</td>
					<td><img src=\"img$count.png\" height=\"13\" width=\"$percent_part[$count]\" alt=\"\"><img src=\"img11.png\" height=\"13\" width=\"".(100-$percent_part[$count])."\" alt=\"\"></td>
					<td>$percent[$count]</td>
				</tr>";
	$count++;
}
$mounts_result .= "
			</table>
		</td>
	</tr>
</table>";

$page_result = $mounts_result;
echo $page_result;

?> 
