var fDesc=new Array();
fDesc[0] = "With the Microsoft® Surface® SDK & Runtime, you can easily create applications to take advantage of the next generation Surface computing device. The applica tions you create can be adapted for other Windows 7 touch-enabled devices as well.
Development platform that delivers familiarity and innovation opportunity:
- Build upon Windows 7, NET and WPF and integrates with Visual Studio.
- Benefit from consistency in experience across Windows 7 devices with the Surface multi-touch controls.
- Develop multi-user, multi-touch and object interaction unique to Surface - innovative experiences that excite users and customers.";
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 = '';
}
}