function displaylink() 
{document.getElementById('sociallinks').style.display='block';
document.getElementById('sociallinks').style.position='absolute';
document.getElementById('sociallinks').style.top='0';
document.getElementById('sociallinks').style.left='0';
document.getElementById('feedback').removeAttribute('class');}

var thenewlia = document.createElement('li');

var thenewanchorpr = document.createElement('a');

thenewanchorpr.setAttribute('id','printlink');

thenewanchorpr.className = 'print';

var printtext = document.createTextNode('Print');

thenewanchorpr.appendChild(printtext);
thenewlia.appendChild(thenewanchorpr);

document.getElementById('printbox').appendChild(thenewlia);

var printpage = document.getElementById('printlink');
if( printpage.addEventListener ) {
  printpage.addEventListener('click',function (e){print();},true);
} else if( printpage.attachEvent ) {
  printpage.attachEvent('onclick',function (e){print();});
}


