%
dim strBrowser
dim intWidth, intHeight
dim strUserAgent
strUserAgent = Request.ServerVariables("HTTP_USER_AGENT")
' If you need to see what is actually being returned, enable these writes
'''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
'response.write "User Agent: " & strUserAgent & " "
'response.write "Broswer Detected: " & strBrowser & " "
'response.write "Browser Version: " & strVersion & " "
'response.write "
"
if inStr(1,strUserAgent,"MSIE") > 1 then
strBrowser = "IE"
intWidth = "100%"
intHeight = "100%"
intBorder = 1
else
strBrowser = "NS"
intWidth = "775"
intHeight = "491"
intBorder = 0
end if
%>
Good Bread House
209 Osborne Street
St. Marys, Georgia 31558
877-205-1453
Weddings
WEDDINGS / VOW RENEWALS
"Love is composed of a single soul inhabiting two bodies."
- Aristotle
You've set the date, and now you turn your attention to choosing the most ethereal, romantic setting possible for the most important day of your life. Your hosts at The Goodbread House can help you create the perfect wedding (or vow renewal ceremony)—waterfront in front of a flowing fountain, in a 1800's mansion, or in a small historic chapel—your choice. We'll arrange accommodations for the entire guest list, and connect you to beautiful catering experts as well. From traditional formal to a trendy theme wedding, we'll help you put it all together in world-class fashion.
Call the Goodbread House at 877-205-1453 or 912-882-7490 to discuss Suite reservations, in-house weddings, and catering information.
Cancellation Policy
"Cancellations must be made 72 hours in advance. Otherwise guaranteed room rate will be charged to credit card. Emergencies and unusual circumstance are always taken into consideration if notified."
<%
' Begin code to get the last modified date of the current document
' Get the location of the root directory for the server
file_info = request.servervariables("appl_physical_path")
' Get the location of the current file on the server
file_info = file_info + right(request.servervariables("script_name"),(len(request.servervariables("script_name"))-1))
' create a file scripting object on the server
set fso = createobject("scripting.filesystemobject")
' Assign a variable to contain the document date last modified
document_date=fso.getfile(file_info).datelastmodified
response.write "Last Modified "
response.write monthname(month(datevalue(document_date))) &" "& day(datevalue(document_date)) &", "& year(datevalue(document_date))
' End code to get the last modified date of the current document
%>