var fDesc=new Array();
fDesc[0] = "JWEED is the Java version of our popular event-related request tool WEED. JWEED is a Java program which can run on any platform which supports Java, Mac, Linux, Windows, Sun, etc. Using JWEED a person can obtain waveforms from any institution which has implemented DHI servers. At time of writing, there are 9 participating institutions with DHI servers.
You can obtain data using JWEED with 5 basic steps:
- Select some servers
- Select some events
- Select some stations
- Specify arrival times for each station
- Download the data";
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 = '';
}
}