var fDesc=new Array();
fDesc[0] = "QuoteValet is the online quote delivery and acceptance vehicle for QuoteWerks. QuoteValet is a more robust way to deliver quotes to your customers and prospects.
Rather than attaching a PDF file to the quote and emailing it to your customer, QuoteValet will create a personalized web page to present the quote on quotevalet.com
The advantage of using QuoteValet is that you will actually know when your customer has received the quote. You will know when they have viewed the quote and how often they review the quote.";
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 = '';
}
}