function RHtable(T){	document.write("<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">");	document.write("<html xmlns=\"http://www.w3.org/1999/xhtml\" lang=\"en\" xml:lang=\"en\">");	document.write("<head><meta content=\"text/html; charset=iso-8859-1\" />");	document.write("<link rel=\"stylesheet\" href=\"bekk.css\" type=\"text/css\" media=\"screen, print\" />");	document.write("<script type=\"text/javascript\" language=\"javascript\" charset=\"ISO-8859-1\" src=\"equatns.js\"></script>");	document.write("<script type=\"text/javascript\" language=\"javascript\" charset=\"ISO-8859-1\" src=\"RHtable.js\"></script>");	document.write("<title>BekkTech Notes RH Table</title></head><body><div id=\"mainsheet\">");	document.write("<div id=\"header\"><p><img src=\"imgs/logo2.JPG\" width=\"116\" height=\"59\" alt=\"BekkTech\" /></p> <h1>Fuel Cell Testing Products and Services</h1> </div>");	document.write("<p id=\"mainmenu\"><a href=\"default.html\">Home</a> <a href=\"product.html\">Products</a> <a href=\"service.html\">Services</a> <a href=\"train.html\">Education</a> <a href=\"links.html\">Links</a> <a href= \"contact.html\">Contact</a></p>");	document.write("<p id=\"location\"><a href=\"product.html\">Products<span>&gt;&gt;</span></a><a href=\"software.html\">Software<span>&gt;&gt;</span></a><a href= \"notes.html\">BekkTechNotes<span>&gt;&gt;</span></a><span>RH Table</span></p>");	document.write("<div id=\"sidemenu\">");    document.write("<h2>Common Conversions<br />used on this page</h2><ul class=\"nb\"><li>RH = VPWater/SatVaporPress</li><li>Vapor Conversions</li></ul>");    document.write("</div>");	document.write("<div id=\"content\">");	document.write("<h2>Below is a table of Relative Humidities for ");	document.write(T);	document.write(" C</h2>");	document.write("<p>Use the back arrow or navigation menu to try another Temperature</p>");	document.write("<table><tr><td>Cell Temperature</td><td>");	document.write(T);	document.write(" C</td></tr>");	document.write("<tr><td align=\"center\">Relative Humidity</td><td align=\"center\">Vapor Pressure</td><td align=\"center\">Dew Point</td></tr>");	document.write("<tr><td align=\"center\">(%RH)</td><td align=\"center\">(kPa)</td><td align=\"center\">(C)</td></tr>");	cellVP=CtokPa(T);	for(i=1;i<=10;i++){		rh = +i*.1;		VP=rh*cellVP;			document.write("<tr><td align=\"center\">");		document.write(Math.round(rh*1000)/10);		document.write("%");		document.write("</td><td align=\"center\">");		document.write(Math.round(VP*10)/10);		document.write("</td><td align=\"center\">");		document.write(Math.round(kPatoC(VP)*10)/10);		document.write("</td></tr>");}	document.write("</table>");	document.write("</div>");	document.write("<p id=\"footer\"><span>Content &copy; 2002-07, BekkTech LLC</span> <span>1(970)461-3998</span> <span><a href=\"contact.html\">Contact Page</a></span></p></div>");	document.write("</body></html>");}