var fDesc=new Array(); fDesc[0] = "The Media Center SDK is designed to help developers create applications and software components that take advantage of features provided by Windows XP Media Center Edition. Features:
- Create Media Center hosted HTML applications.
- Create Media Center hosted add-ins using managed code.
- Direct Media Center to schedule the recording of TV programs from hosted HTML applications, add-ins, and external Windows applications.
- Create device drivers and other software components that receive status information about the state of Media Center.
- Create an input method editor (IME) module that adds a localized version of the on-screen keyboard, keypad, and input method editor to Media Center."; 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 = ''; } }