var normalColor = "transparent";
var hoverColor = "deepskyblue";
function mout(obj){
 obj.style.backgroundColor=normalColor;
}
function mover(obj){
 obj.style.backgroundColor=hoverColor;
}
document.write("<div style=\"margin:1em 0 1em .5em;\"><table border=\"1\" summary=\"MIMEタイプの適性表\">");
document.write("<thead><tr>");
document.write("<th>MIMEタイプ</th><th>HTML 4.01</th><th>XHTML 1.0</th><th>XHTML 1.0（非互換）</th><th>XHTML 1.1</th>");
document.write("</tr></thead><tbody>");
document.write("<tr onmouseover=\"mover(this)\" onmouseout=\"mout(this)\">");
document.write("<td>text/html</td>");
document.write("<td>推奨（Should）</td>");
document.write("<td>可能（May）</td>");
document.write("<td>非推奨（Should not）</td>");
document.write("<td>非推奨（Should not）</td>");
document.write("</tr><tr onmouseover=\"mover(this)\" onmouseout=\"mout(this)\">");
document.write("<td>application/xhtml+xml</td>");
document.write("<td>禁止（Must not）</td>");
document.write("<td>推奨（Should）</td>");
document.write("<td>推奨（Should）</td>");
document.write("<td>推奨（Should）</td>");
document.write("</tr><tr onmouseover=\"mover(this)\" onmouseout=\"mout(this)\">");
document.write("<td>application/xml, text/xml</td>");
document.write("<td>禁止（Must not）</td>");
document.write("<td>可能（May）</td>");
document.write("<td>可能（May）</td>");
document.write("<td>可能（May）</td>");
document.write("</tr></tbody></table></div>");

