var fDesc=new Array();
fDesc[0] = "This great new Print Creations application makes it easy to create and print your own personalized wall calendars. The program includes professionally designed calendar templates in a wide range of styles and layouts – just add your own pictures and important dates (birthdays, anniversaries) and in seconds, you've got an awesome calendar for sharing with family and friends.
The ArcSoft Print Creations family of applications even lets you add other fun project types to the software at any time. Try projects such as Greeting Card, Album Page, Photo Book, Funhouse and more.";
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 = '';
}
}