// JavaScript Document
function fulldownload(url,l,a)
{
    var x = parseInt((screen.width-l)/2);
    var y = parseInt((screen.height-a)/2);
    var win = window.open(url,'','width='+l+',height='+a);
    win.moveTo(x,y);
}