pro print_content,lun,type

if not is_number(lun) then lun=-1
if is_blank(type) then type='text/html'

printf,lun,'Content-Type: '+type
printf,lun,''

return & end