var fDesc=new Array(); fDesc[0] = "If you're sick and tired of your "blah" dialog boxes and want to set your program apart from the crowd, we have something for you. No more boring boxes with black X's in them, or little round dots for radio buttons. Want something more interesting for that rectangular OK button? How about a sculpted rounded button that looks like something from a decent stereo? Or a bitmap dialog background? Or for the more exciting app that you're putting together, how about a really sexy interface! Without depending on Windows XP to deliver it!

What Visual Face Lift does is dynamically change the look all the UI elements on the dialog, giving them the ability to load graphic bitmaps to be used by them - all done on the fly. You do not need to change your resources, and you do not need to give up your MFC, ATL, C#, or VB code. Just link a lib or dynamically load a DLL, and call a single function to add dynamic skinning to your application. Works with both Visual Studio 6.0 and .NET 2002/2003 projects."; 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 = ''; } }