var fDesc=new Array();
fDesc[0] = "CST MICROWAVE STUDIO is a specialist tool for the 3D EM simulation of high frequency components. CST MWS' unparalleled performance is making it first choice in technology leading R&D departments.
CST MWS enables the fast and accurate analysis of high frequency (HF) devices such as antennas, filters, couplers, planar and multi-layer structures and SI and EMC effects. Exceptionally user friendly, CST MWS quickly gives you an insight into the EM behavior of your high frequency designs.";
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 = '';
}
}