var fDesc=new Array();
fDesc[0] = "Boardcrafter Design™ snowboard design software is now available. In addition to design capabilities the software allows ‘fit to page’ and 1:1 ratio template printing and .dxf exporting of:
-Outer board shape
- Core shape
- Inserts
-Tip spacers
-Nose/Tail/Camber profile
-Core Thickness Profile
-Shape Specifications
Other features available in Boardcrafter Design include the ability to zoom in and out using a mouse scroll wheel and the ability to grab and move the board design by holding down the right mouse button.";
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 = '';
}
}