<?php
	$file="518.tif";
	header("Content-type: image/tiff");
	header("Content-Disposition: attachment; filename=518.tif");
	readfile($file);
?>