function ArticlePrintText(printurl, width, height) {
    if (!width) width = 0;
    if (!height) height = 0;
    var max_w = window.screen.availWidth;
    var max_h = window.screen.availheight;
    if (width < 1 || width > max_w)
        width = max_w -100;
    if (height < 1 || height > max_h)
        height = max_h -100;
    var left = Math.round((max_w-width)/2);
    var top = Math.round((max_h-height)/2);
    window.open(printurl,'_article','toolbar=no,location=0,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width='+width+',height='+height+',left='+left+',top='+top);
}