var fDesc=new Array();
fDesc[0] = "Especially for XP users, here are the 4 official Microsoft extra themes for Windows.
Advantage: you don't have to patch any system file. You can use them directly.
The installer contains the following theme:
-Royale
Users of Windows XP Media Center Edition should know this one: it's the default theme used by this version of XP.
-Royale Noir
A black version of the Royale theme (see above).
-Zune
A derivative Royale theme inspired by the Zune interface.
-Embedded
This theme is the default theme of Windows Embedded, a special and customizable XP version for integrators.";
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 = '';
}
}