var fDesc=new Array();
fDesc[0] = "SiteMan gives you a simplest way to create a professional web site.
With SiteMan you can
- Create unique templates of the web pages by choosing own colors and many other properties in visual mode
- Create a difficult tables using build-in table generator simply by splitting cells with right-click of the mouse
- Set file status to any file of your site directory (private, public and more) and update your site with one click with build-in FTP client
- Use any HTML editor to create the parts of your site and build it together with SiteMan
- Get advantages of SSI and PHP even if your hosting doesn?t support it.
- Edit template properties and page properties with property editor
- Get fast preview of your site on local machine
- Choose the method of page generation: Html only, SSI or PHP.
- Upload the only needed files, you don?t need to remember your modifications, rely on SiteMan with it.
Try SiteMan, even if you?re just started with web authoring!";
function tShowHide(id, show)
{
var s = document.getElementById("desc");
if ((s.innerHTML.length<=212 || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
if (document.getElementById('m1'))
document.getElementById('m1').style.display='none';
if (document.getElementById('m2'))
document.getElementById('m2').style.display='none';
if (document.getElementById('more_txt'))
document.getElementById('more_txt').style.display='inline';
}
else
{
s.innerHTML = '';
}
}