﻿

function OpenDocClient(client, attach)
{
    var width = 800;
    var height = 600;
    
    var leftVal = (screen.width - width) / 2;
    var topVal = (screen.height - height) / 2;

    window.open('../Pages/DocumentClient.aspx?client=' + client + '&attach=' + attach, 'DocumentClient', 'width='+width+',height='+height+',left='+leftVal+',top='+topVal+',toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes');
}


function OpenDocNews(news)
{
    var width = 800;
    var height = 600;
    
    var leftVal = (screen.width - width) / 2;
    var topVal = (screen.height - height) / 2;

    window.open('../Pages/DocumentNews.aspx?news=' + news, 'DocumentNews', 'width='+width+',height='+height+',left='+leftVal+',top='+topVal+',toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes');
}


