var fDesc=new Array();
fDesc[0] = "A web development environment that allows you to:
- Build easily robust applications using an MVC framework and a MySQL/PostgreSQL/SQLite database backend.
- Do all your application development inside Advanced Website Creator. No more editing arcane .xml files.
- Improve positioning of your websites in search results by using search engine friendly URLs.
- Take advantage of a database abstraction layer, that greatly simplifies database development.
- Automatically use transactions when they are available for the target database engine.
- Stop using include() and require() - library and user PHP classes are loaded automatically when used.
Advanced Website Creator integrates with most popular PHP encoders.
Full source code is available for the PHP runtime framework.";
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 = '';
}
}