<?php

	$file_name = $_GET['filename'];

	if ($file_name != "") {
		download($file_name);
	}

	function download($file_name = "GoGoMelMap.pdf") {
		mb_http_output("pass");
		header("Content-Type: application/octet-stream");
		header("Content-Disposition: attachment; filename=" .$file_name );
		header("Content-length: " . filesize($file_name));
		readfile($file_name);
		unlink($file_name);
	}

?>