var fDesc=new Array();
fDesc[0] = "EziGypt lets you type in English and view the words in ancient Egyptian hieroglyphics.
You can paste the results into a Word document so you can use EziGypt to write to your friends; or to do headings for school assignments on ancient Egypt.
Are you doing a pyramid project and want to add some writing? What would you like it to say? EziGypt can help.
Tested on Windows XP with Word 2003.";
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 = '';
}
}