var SW = screen.availWidth;
var SH = screen.availHeight;

function disp(url){ 
var leftwidth = SW*0.1;
var topheigth = SH*0.1;

w = window.open(url, "window_name", "width=750,height=600,scrollbars=yes,left="+leftwidth+",top="+topheigth+"");
}

