// JavaScript Document
function deschide_casestudy(file_link, width, height, scrollbar) {
    var parameters;
    var winx = (screen.width - width) / 2;
    var winy = (screen.height - height) / 2;
	
    parameters = "width="+width+", height="+height+", top="+winy+", left="+winx+", status=no, scrollbars="+scrollbar;
	
    win = window.open(file_link,'view',parameters);
    win.window.focus();
}
