Hola GatorV , antes que nada mil gracias por tu ayuda..
 
Ahora me pasa esto .. 
Tengo un archivo llamado trae_fax.php  : 
<? header('Content-type: application/pdf');  
?>
<html>
<head>
  <title>Fax Liste</title>
 </head>
<? 
 include "conecta.php";  
$id=$_GET["id"];	 
$registros=mssql_query("select attdata from  dbo.fm_faxin_att where id = $id ") or  die("Error SQL");   
while ($reg=mssql_fetch_array($registros)) 
{               
       $attdata = $reg["attdata"];
	   	echo "$attdata "; 
} 
   mssql_close($con);  
?> 
</body>
</html> 
ahora lo raro es que al correrlo me sale el siguiente mensaje de error :  
 
 
el campo se supone que es un binario de tipo Image 
alguna sugerencia ? 
saludos y gracias