var printbutton = document.getElementById('printbutton');
printbutton.appendChild(document.createTextNode('Print page'))

printbutton.onclick = function() {
var newWin = window.open(printbutton.href,'printWin','status=0,toolbar=0,location=0,menubar=0,directories=0,height=720,width=720,scrollbars=1');
newWin.onload = function() { this.print(); };
return false;
};

printbutton.style.display = 'block';
printbutton.style.position = 'absolute';
printbutton.style.right = '25px';
printbutton.style.top = (printbutton.style.top==0) ? '16px' : printbutton.style.top;
printbutton.style.textIndent = '-9999px';
printbutton.style.height = '30px';
printbutton.style.width = '120px';
printbutton.style.background = 'url(/images/button_print.png)';
