little bit confused with your question, do you mean want to download those files in a "new tab" ? if so, this code might help :
PHP Code:
<?php
$name = basename($filename);
$size = getimagesize($filename);
$len = filesize($filename);
header("Content-type: {$size['mime']}");
header("Content-Length: $len");
header("Content-Disposition: attachment; filename=$filename");
readfile($filename);
?>
Good luck