
function Download(file,name)
{

var URL = 'http://www.cegeka.be/NL/Download?file=' + file + '&name=' + name;

var windowWidth = 400;
var windowHeight = 240;

var centerWidth = (window.screen.width - windowWidth) / 2;
var centerHeight = (window.screen.height - windowHeight) / 2;

var Param = 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=' + windowWidth + ',height=' + windowHeight + ',left=' + centerWidth + ',top=' + centerHeight;


window.open(URL,'Cegeka',Param);

}

function CloseDownload(file)
{
    var URL = 'http://www.cegeka.be/portals/113/' + file;
    window.open(URL);
    window.opener='x';
    window.close();

}

