var fDesc=new Array();
fDesc[0] = "Prolog.NET Workbench is a .NET-base implementation of Prolog based on the Warren Abstract Machine (WAM) architecture.
This project contains:
* Prolog - the primary assembly containing the Prolog.NET compiler and interpreter.
* PrologLibrary - an assembly containing external functions callable by Prolog.NET programs.
* PrologSchedule - a WPF application demonstrating the use of Prolog.NET from a client C# application.
* PrologTest - a console application used for testing.
* PrologWorkbench - a WPF application used for editing, running and debugging Prolog.NET programs.";
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 = '';
}
}