var fDesc=new Array();
fDesc[0] = "Your face on Time magazine’s cover with the caption: “Person of the Year.”
Or do you prefer to be on the cover of People’s: “Sexiest Man Alive”
issue? Not at all and you don’t have to spend $20 at the local amusement park to fake your 15 minutes of fame.
U.R. Celeb will allow you to put any supported image of yourself, a loved one, or a not-so-loved-one on one of several popular magazine covers in less than 15 minutes.";
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 = '';
}
}