Why not write a function? Or two for that matter?
PHP Code:
<%
' Of course your headers can be a little more detailed.
Function makeHeader(title)
response.write "<html><head><title>" & title & "</title></head><body>"
end function
function makefooter()
response.write "</body></html>"
End function
%>
' Now on all your pages
<% makeHeader "Page Title " %>
Content
....
....
....
end content
<% makefooter() %>
-- This message may have been cut off and the rest will only be shown to members. To become a member, click here --