function PrintPartOfPage(id)
{
    var width = 800;
    var height = 600;
    var left = (window.screen.availWidth-width)/2;
    var top = (window.screen.availHeight-height)/2;
    width+=0;
    height+=0;
    wId=window.open('/admin/print_version.php?id=' + id, name, 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,left='+left+',top='+top+',width='+width+',height='+height);
    wId.focus();
}