function WriteHtml(Html) {
document.write(Html)
}

function WriteBanner() {
var Html = null
WriteHtml("   <table border-0 cellpadding=0 cellspacing=0>")
WriteHtml("      <tr>")
WriteHtml("	<td width=55%>")
WriteHtml("    	   <img src=\"images/fade0.jpg\" width=\"200\" height=\"10\">")
WriteHtml("	</td>")
WriteHtml("	<td   width=400>")
WriteHtml("	   <img src=\"images/stx-ban2.jpg\" width=\"399\"  height=\"77\">")
WriteHtml("	</td>")
WriteHtml("      </tr>")
WriteHtml("   </table>")
}

function WriteSideBarNav() {
WriteHtml("<Div Class=\"sidebar\">")
WriteHtml("<SPAN Class=\"box\"><A Href=\"index.html\"     >&nbsp;&nbsp;Home               </A><BR></SPAN>") 
WriteHtml("<SPAN Class=\"box\"><A Href=\"i2i.html\"     >&nbsp;&nbsp;i2i Mobile FAQs         </A><BR></SPAN>") 
WriteHtml("<SPAN Class=\"box\"><a Href=\"software.html\"  >&nbsp;&nbsp;ScreenSafer/400    </a><BR></SPAN>") 
WriteHtml("<SPAN Class=\"box\"><a Href=\"security.html\"  >&nbsp;&nbsp;IBM i Security   </a><BR></SPAN>") 
WriteHtml("<SPAN Class=\"box\"><a Href=\"web-dev.html\"   >&nbsp;&nbsp;IBM i Web </a><BR></SPAN>") 
WriteHtml("<SPAN Class=\"box\"><a Href=\"tips.html\"      >&nbsp;&nbsp;Technical Tips   </a><BR></SPAN>") 
WriteHtml("<SPAN Class=\"box\"><a Href=\"articles.html\"  >&nbsp;&nbsp;Articles           </a><BR></SPAN>") 
WriteHtml("<SPAN Class=\"box\"><a Href=\"consulting.html\">&nbsp;&nbsp;Consulting         </a><BR></SPAN>") 
WriteHtml("<SPAN Class=\"box\"><a Href=\"whois.html\"     >&nbsp;&nbsp;Company            </a><BR></SPAN>") 
WriteHtml("</Div>")
}

function WriteBottomNav() {

WriteHtml("   <table border-0>")
WriteHtml("      <TR>")
WriteHtml("	   <td>")
WriteHtml("	   <p>")
WriteHtml("	   <hr width=80%>")
WriteHtml("	   <img src=\"images/people.jpg\" width=\"578\" height=\"82\"><br>")
WriteHtml("	   <font size=\"2pt\">")
WriteHtml("	   <a href=\"index.html\"     >Home                </a> |") 
WriteHtml("	   <a href=\"i2i.html\"       > i2i Mobile         </a> |")
WriteHtml("	   <a href=\"software.html\"  > ScreenSafer/400    </a> |")
WriteHtml("	   <a href=\"security.html\"  > IBM i Security     </a> |")
WriteHtml("	   <a href=\"web-dev.html\"   > IBM i Web          </a> |")
WriteHtml("	   <a href=\"tips.html\"      > Technical Tips     </a> |")
WriteHtml("   	   <a href=\"articles.html\"  > Articles           </a> |")
WriteHtml("	   <a href=\"consulting.html\"> Consulting         </a> |")  
WriteHtml("	   <a href=\"whois.html\"     > Company            </a><br>") 
WriteHtml("	   </Font>")
WriteHtml("	   </td>")
WriteHtml("      <TR>")
WriteHtml("   </table>")

}
 
function WriteFooter() {
WriteHtml("<HR>")
WriteHtml("   </Center>")
WriteHtml("   <table border=0 bgcolor=white width=95% cellpadding=5 cellspacing=5>")
WriteHtml("      <tr>")
WriteHtml("	<td width=\"20%\" Align=\"Left\"><font color=\"#ff0000\"><B><i>Sentinex Inc.</i></B></font>")
WriteHtml("	   <Br>22 Tamarack Road")
WriteHtml("	   <br>Belvidere, NJ, 07823 ")
WriteHtml("	</TD><td width=\"30%\" Align=\"Right\">")
WriteHtml("		<br>")
WriteHtml("		Telephone:   (908) 500 6808")
WriteHtml("		<Br>")
WriteHtml("		<br>e-Mail: <a href=\"mailto:info@sentinex.com\">info@sentinex.com </a>")
WriteHtml("	</TD>")
WriteHtml("	<td width=\"25%\" Align=\"Center\">")
WriteHtml("	  <a href=\"http://www.ibm.com/partnerworld/developer/?b=lb1\" target=\"_top\">")
WriteHtml("	  <img src=\"images/mempwd.gif\" alt=\"Member of PartnerWorld for Developers\"")
WriteHtml("	   width=\"140\" height=\"76\" border=\"0\" vAlign=\"Top\"></a>")
WriteHtml("	   <Br>")
WriteHtml("	   <Font Size=2>IBM is a registered trademark of IBM Corporation.</Font>")
WriteHtml("	</TD>")
WriteHtml("	<td width=\"10%\">")
WriteHtml("	 <img src=\"NYPHPOrgMember.gif\"></TD>")
WriteHtml("      </tr>")
WriteHtml("</table>")
WriteHtml("</center>")
WriteHtml("<Br>")
WriteHtml("<p><center><Font Size=2><b>All content copyright 2010, Sentinex Inc. All rights reserved. </center></B></Font>")
}

