create a showdocument.php
and link to it like:
'showdocument.php?filename=adobe.pdf'
or
'showdocument.php?filename=word.doc'
<?
header("Content-Type: application/x-pdf");
fpassthru($filename);
?>
this is for pdf files, for word docs use:
<?
header("Content-Type: application/ms-word");
fpassthru($filename);
?>