var fDesc=new Array();
fDesc[0] = "DRXWin is a program for Windows which lets you work with X-Ray diffraction files coming from several diffractometers (Siemens, Philips, Rigaku, Stoe, Seifert, etc.), and Rietveld programs like FullProf and RIET7.
Main features:
- Customize XRD patterns color and white or black for the screen background color.
- Automatic peak search and the ability to add symbols to peaks for labeling phases, etc.
- Save the peaks to plot afterwards as a pattern and plot patterns of the PDF-2 database.";
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 = '';
}
}