var fDesc=new Array();
fDesc[0] = "Dell™ WebCam Central 2.0 is a video capture and control software for supported webcam devices.
Dell™ WebCam Central 2.0 lets you:
-Make use of H.264 video recording
-Capture photos and videos
-Create fun effects on video and audio
-Share photos, PowerPoint slides and Windows Desktop with the remote party
-Control video settings
-Cancel noise on audio
-Share photos and videos on social networking web sites such as YouTube, -Photobucket, Facebook, KinKast, Box.net and Youku(China)
-The webcam software was designed to use the embedded camera in Dell notebooks.";
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 = '';
}
}