var fDesc=new Array();
fDesc[0] = "Heineken font wouldn't be available without the great work of the Shamrock. Heineken font is a new font which supports only Unicode BMP encoding.
Main characteristics :
- Font family : Heineken
- Font subfamily : Regular
- Unique subfamily identification: Macromedia Fontographer 4.1.5 Heineken
- Full font name : Heineken
- Name table version : Macromedia Fontographer 4.1.5 06‐12‐2001
- Postscript font name : Heineken";
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 = '';
}
}