I'm using the following PHP code, which opens a 'Save as' file dialog:
$filename = "employeedetails.csv";
header('Content-type: application/csv');
header('Content-Disposition: attachment; filename=' . $filename);
When I execute this code, the 'save as' window appears in its maximized form.
How can I reduce/increase the size of this window?