var fDesc=new Array();
fDesc[0] = "Crystallographica-Search Match (CSM) is a search-match program to be used together with the International Centre for Diffraction Data‘s PDF databases.
Main Features:
-Powerful search algorithm for multi-phase identification.
-Lightning-fast search using raw data, peak data or a combination of the two.
-Fully integrated Boolean PDF card retrieval and display.
-User database, with interface to Crystallographica.
-Fully integrated peak search and background subtraction tools..
-Powder pattern simulation, including multi-phase mixtures.
-Reads most common file formats.
-Writes reports directly to Microsoft Word.";
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 = '';
}
}