<%@LANGUAGE="VBSCRIPT"%> <% Dim Glacier Dim Glacier_numRows Set Glacier = Server.CreateObject("ADODB.Recordset") Glacier.ActiveConnection = MM_Glacier_STRING Glacier.Source = "SELECT * FROM Glacier WHERE Amended BETWEEN (DATE()) AND (DATE()) -'60' AND ABE ='Y' ORDER BY AUTHOR, TITLE" Glacier.CursorType = 0 Glacier.CursorLocation = 2 Glacier.LockType = 1 Glacier.Open() Glacier_numRows = 0 %> <% Dim Repeat1__numRows Dim Repeat1__index Repeat1__numRows = -1 Repeat1__index = 0 Glacier_numRows = Glacier_numRows + Repeat1__numRows %> <% ' *** Recordset Stats, Move To Record, and Go To Record: declare stats variables Dim Glacier_total Dim Glacier_first Dim Glacier_last ' set the record count Glacier_total = Glacier.RecordCount ' set the number of rows displayed on this page If (Glacier_numRows < 0) Then Glacier_numRows = Glacier_total Elseif (Glacier_numRows = 0) Then Glacier_numRows = 1 End If ' set the first and last displayed record Glacier_first = 1 Glacier_last = Glacier_first + Glacier_numRows - 1 ' if we have the correct record count, check the other stats If (Glacier_total <> -1) Then If (Glacier_first > Glacier_total) Then Glacier_first = Glacier_total End If If (Glacier_last > Glacier_total) Then Glacier_last = Glacier_total End If If (Glacier_numRows > Glacier_total) Then Glacier_numRows = Glacier_total End If End If %> <% ' *** Recordset Stats: if we don't know the record count, manually count them If (Glacier_total = -1) Then ' count the total records by iterating through the recordset Glacier_total=0 While (Not Glacier.EOF) Glacier_total = Glacier_total + 1 Glacier.MoveNext Wend ' reset the cursor to the beginning If (Glacier.CursorType > 0) Then Glacier.MoveFirst Else Glacier.Requery End If ' set the number of rows displayed on this page If (Glacier_numRows < 0 Or Glacier_numRows > Glacier_total) Then Glacier_numRows = Glacier_total End If ' set the first and last displayed record Glacier_first = 1 Glacier_last = Glacier_first + Glacier_numRows - 1 If (Glacier_first > Glacier_total) Then Glacier_first = Glacier_total End If If (Glacier_last > Glacier_total) Then Glacier_last = Glacier_total End If End If %> <% Dim MM_paramName %> <% ' *** Move To Record and Go To Record: declare variables Dim MM_rs Dim MM_rsCount Dim MM_size Dim MM_uniqueCol Dim MM_offset Dim MM_atTotal Dim MM_paramIsDefined Dim MM_param Dim MM_index Set MM_rs = Glacier MM_rsCount = Glacier_total MM_size = Glacier_numRows MM_uniqueCol = "" MM_paramName = "" MM_offset = 0 MM_atTotal = false MM_paramIsDefined = false If (MM_paramName <> "") Then MM_paramIsDefined = (Request.QueryString(MM_paramName) <> "") End If %> <% ' *** Move To Record: handle 'index' or 'offset' parameter if (Not MM_paramIsDefined And MM_rsCount <> 0) then ' use index parameter if defined, otherwise use offset parameter MM_param = Request.QueryString("index") If (MM_param = "") Then MM_param = Request.QueryString("offset") End If If (MM_param <> "") Then MM_offset = Int(MM_param) End If ' if we have a record count, check if we are past the end of the recordset If (MM_rsCount <> -1) Then If (MM_offset >= MM_rsCount Or MM_offset = -1) Then ' past end or move last If ((MM_rsCount Mod MM_size) > 0) Then ' last page not a full repeat region MM_offset = MM_rsCount - (MM_rsCount Mod MM_size) Else MM_offset = MM_rsCount - MM_size End If End If End If ' move the cursor to the selected record MM_index = 0 While ((Not MM_rs.EOF) And (MM_index < MM_offset Or MM_offset = -1)) MM_rs.MoveNext MM_index = MM_index + 1 Wend If (MM_rs.EOF) Then MM_offset = MM_index ' set MM_offset to the last possible record End If End If %> <% ' *** Move To Record: if we dont know the record count, check the display range If (MM_rsCount = -1) Then ' walk to the end of the display range for this page MM_index = MM_offset While (Not MM_rs.EOF And (MM_size < 0 Or MM_index < MM_offset + MM_size)) MM_rs.MoveNext MM_index = MM_index + 1 Wend ' if we walked off the end of the recordset, set MM_rsCount and MM_size If (MM_rs.EOF) Then MM_rsCount = MM_index If (MM_size < 0 Or MM_size > MM_rsCount) Then MM_size = MM_rsCount End If End If ' if we walked off the end, set the offset based on page size If (MM_rs.EOF And Not MM_paramIsDefined) Then If (MM_offset > MM_rsCount - MM_size Or MM_offset = -1) Then If ((MM_rsCount Mod MM_size) > 0) Then MM_offset = MM_rsCount - (MM_rsCount Mod MM_size) Else MM_offset = MM_rsCount - MM_size End If End If End If ' reset the cursor to the beginning If (MM_rs.CursorType > 0) Then MM_rs.MoveFirst Else MM_rs.Requery End If ' move the cursor to the selected record MM_index = 0 While (Not MM_rs.EOF And MM_index < MM_offset) MM_rs.MoveNext MM_index = MM_index + 1 Wend End If %> <% ' *** Move To Record: update recordset stats ' set the first and last displayed record Glacier_first = MM_offset + 1 Glacier_last = MM_offset + MM_size If (MM_rsCount <> -1) Then If (Glacier_first > MM_rsCount) Then Glacier_first = MM_rsCount End If If (Glacier_last > MM_rsCount) Then Glacier_last = MM_rsCount End If End If ' set the boolean used by hide region to check if we are on the last record MM_atTotal = (MM_rsCount <> -1 And MM_offset + MM_size >= MM_rsCount) %> <% ' *** Go To Record and Move To Record: create strings for maintaining URL and Form parameters Dim MM_keepNone Dim MM_keepURL Dim MM_keepForm Dim MM_keepBoth Dim MM_removeList Dim MM_item Dim MM_nextItem ' create the list of parameters which should not be maintained MM_removeList = "&index=" If (MM_paramName <> "") Then MM_removeList = MM_removeList & "&" & MM_paramName & "=" End If MM_keepURL="" MM_keepForm="" MM_keepBoth="" MM_keepNone="" ' add the URL parameters to the MM_keepURL string For Each MM_item In Request.QueryString MM_nextItem = "&" & MM_item & "=" If (InStr(1,MM_removeList,MM_nextItem,1) = 0) Then MM_keepURL = MM_keepURL & MM_nextItem & Server.URLencode(Request.QueryString(MM_item)) End If Next ' add the Form variables to the MM_keepForm string For Each MM_item In Request.Form MM_nextItem = "&" & MM_item & "=" If (InStr(1,MM_removeList,MM_nextItem,1) = 0) Then MM_keepForm = MM_keepForm & MM_nextItem & Server.URLencode(Request.Form(MM_item)) End If Next ' create the Form + URL string and remove the intial '&' from each of the strings MM_keepBoth = MM_keepURL & MM_keepForm If (MM_keepBoth <> "") Then MM_keepBoth = Right(MM_keepBoth, Len(MM_keepBoth) - 1) End If If (MM_keepURL <> "") Then MM_keepURL = Right(MM_keepURL, Len(MM_keepURL) - 1) End If If (MM_keepForm <> "") Then MM_keepForm = Right(MM_keepForm, Len(MM_keepForm) - 1) End If ' a utility function used for adding additional parameters to these strings Function MM_joinChar(firstItem) If (firstItem <> "") Then MM_joinChar = "&" Else MM_joinChar = "" End If End Function %> <% ' *** Move To Record: set the strings for the first, last, next, and previous links Dim MM_keepMove Dim MM_moveParam Dim MM_moveFirst Dim MM_moveLast Dim MM_moveNext Dim MM_movePrev Dim MM_urlStr Dim MM_paramList Dim MM_paramIndex Dim MM_nextParam MM_keepMove = MM_keepBoth MM_moveParam = "index" ' if the page has a repeated region, remove 'offset' from the maintained parameters If (MM_size > 1) Then MM_moveParam = "offset" If (MM_keepMove <> "") Then MM_paramList = Split(MM_keepMove, "&") MM_keepMove = "" For MM_paramIndex = 0 To UBound(MM_paramList) MM_nextParam = Left(MM_paramList(MM_paramIndex), InStr(MM_paramList(MM_paramIndex),"=") - 1) If (StrComp(MM_nextParam,MM_moveParam,1) <> 0) Then MM_keepMove = MM_keepMove & "&" & MM_paramList(MM_paramIndex) End If Next If (MM_keepMove <> "") Then MM_keepMove = Right(MM_keepMove, Len(MM_keepMove) - 1) End If End If End If ' set the strings for the move to links If (MM_keepMove <> "") Then MM_keepMove = MM_keepMove & "&" End If MM_urlStr = Request.ServerVariables("URL") & "?" & MM_keepMove & MM_moveParam & "=" MM_moveFirst = MM_urlStr & "0" MM_moveLast = MM_urlStr & "-1" MM_moveNext = MM_urlStr & CStr(MM_offset + MM_size) If (MM_offset - MM_size < 0) Then MM_movePrev = MM_urlStr & "0" Else MM_movePrev = MM_urlStr & CStr(MM_offset - MM_size) End If %> <% '******************************* ' ' ADVANCED SEARCH ' VERSION = 1.3.9 ' '******************************* DwZone_formName = "Glacier" %> Mountaineering Books and Polar Exploration - Glacier Books
Glacier Books Header
Just Arrived
Mountaineering
Polar Exploration
New Books
Magazines and Journals
Miscellaneous
Glacier Books Home Page
Contact
Books Wanted
News
Visitors Welcome
Links
Featured
Terms and Conditions
Glacier Books Fade Band
<% While ((Repeat1__numRows <> 0) AND (NOT Glacier.EOF)) %> <% Repeat1__index=Repeat1__index+1 Repeat1__numRows=Repeat1__numRows-1 Glacier.MoveNext() Wend %>
Mountaineering & Polar Books Site Map - Glacier Books
Glacier Books Red Line
SITE MAP
MOUNTAINEERING :: POLAR EXPLORATION :: NEW BOOKS :: MAGAZINES & JOURNALS :: MISCELLANEOUS
Introduction
Books Just Arrived - Author A
Books Just Arrived - Author B
Books Just Arrived - Author C
Books Just Arrived - Author D
Books Just Arrived - Author E
Books Just Arrived - Author F
Books Just Arrived - Author G
Books Just Arrived - Author H
Books Just Arrived - Author I
Books Just Arrived - Author J
Books Just Arrived - Author K
Books Just Arrived - Author L
Books Just Arrived - Author M
Books Just Arrived - Author N
Books Just Arrived - Author O
Books Just Arrived - Author P
Books Just Arrived - Author Q
Books Just Arrived - Author R
Books Just Arrived - Author S
Books Just Arrived - Author T
Books Just Arrived - Author U
Books Just Arrived - Author V
Books Just Arrived - Author W
Books Just Arrived - Author X
Books Just Arrived - Author Y
Books Just Arrived - Author Z
Mountaineering - Author A
http://www.glacierbooks.com/Book_Mountaineering2.asp?AUTHOR=B Mountaineering - Author B
Mountaineering - Author C
http://www.glacierbooks.com/Book_Mountaineering2.asp?AUTHOR=D Mountaineering - Author D
Mountaineering - Author E
http://www.glacierbooks.com/Book_Mountaineering2.asp?AUTHOR=F Mountaineering - Author F
Mountaineering - Author G
http://www.glacierbooks.com/Book_Mountaineering2.asp?AUTHOR=H Mountaineering - Author H
Mountaineering - Author I
http://www.glacierbooks.com/Book_Mountaineering2.asp?AUTHOR=J Mountaineering - Author J
Mountaineering - Author K
http://www.glacierbooks.com/Book_Mountaineering2.asp?AUTHOR=L Mountaineering - Author L
Mountaineering - Author M
http://www.glacierbooks.com/Book_Mountaineering2.asp?AUTHOR=N Mountaineering - Author N
Mountaineering - Author O
http://www.glacierbooks.com/Book_Mountaineering2.asp?AUTHOR=P Mountaineering - Author P
Mountaineering - Author Q
http://www.glacierbooks.com/Book_Mountaineering2.asp?AUTHOR=R Mountaineering - Author R
Mountaineering - Author S
http://www.glacierbooks.com/Book_Mountaineering2.asp?AUTHOR=T Mountaineering - Author T
Mountaineering - Author U
http://www.glacierbooks.com/Book_Mountaineering2.asp?AUTHOR=V Mountaineering - Author V
Mountaineering - Author W
http://www.glacierbooks.com/Book_Mountaineering2.asp?AUTHOR=X Mountaineering - Author X
Mountaineering - Author Y
http://www.glacierbooks.com/Book_Mountaineering2.asp?AUTHOR=Z Mountaineering - Author Z
http://www.glacierbooks.com/Book_Polar_Exploration.asp?AUTHOR=A Polar Exploration - Author A
http://www.glacierbooks.com/Book_Polar_Exploration.asp?AUTHOR=B Polar Exploration - Author B
http://www.glacierbooks.com/Book_Polar_Exploration.asp?AUTHOR=C Polar Exploration - Author C
http://www.glacierbooks.com/Book_Polar_Exploration.asp?AUTHOR=D Polar Exploration - Author D
http://www.glacierbooks.com/Book_Polar_Exploration.asp?AUTHOR=E Polar Exploration - Author E
http://www.glacierbooks.com/Book_Polar_Exploration.asp?AUTHOR=F Polar Exploration - Author F
http://www.glacierbooks.com/Book_Polar_Exploration.asp?AUTHOR=G Polar Exploration - Author G
http://www.glacierbooks.com/Book_Polar_Exploration.asp?AUTHOR=H Polar Exploration - Author H
http://www.glacierbooks.com/Book_Polar_Exploration.asp?AUTHOR=I Polar Exploration - Author I
http://www.glacierbooks.com/Book_Polar_Exploration.asp?AUTHOR=J Polar Exploration - Author J
http://www.glacierbooks.com/Book_Polar_Exploration.asp?AUTHOR=K Polar Exploration - Author K
http://www.glacierbooks.com/Book_Polar_Exploration.asp?AUTHOR=L Polar Exploration - Author L
http://www.glacierbooks.com/Book_Polar_Exploration.asp?AUTHOR=M Polar Exploration - Author M
http://www.glacierbooks.com/Book_Polar_Exploration.asp?AUTHOR=N Polar Exploration - Author N
http://www.glacierbooks.com/Book_Polar_Exploration.asp?AUTHOR=O Polar Exploration - Author O
http://www.glacierbooks.com/Book_Polar_Exploration.asp?AUTHOR=P Polar Exploration - Author P
http://www.glacierbooks.com/Book_Polar_Exploration.asp?AUTHOR=Q Polar Exploration - Author Q
http://www.glacierbooks.com/Book_Polar_Exploration.asp?AUTHOR=R Polar Exploration - Author R
http://www.glacierbooks.com/Book_Polar_Exploration.asp?AUTHOR=S Polar Exploration - Author S
http://www.glacierbooks.com/Book_Polar_Exploration.asp?AUTHOR=T Polar Exploration - Author T
http://www.glacierbooks.com/Book_Polar_Exploration.asp?AUTHOR=U Polar Exploration - Author U
http://www.glacierbooks.com/Book_Polar_Exploration.asp?AUTHOR=V Polar Exploration - Author V
http://www.glacierbooks.com/Book_Polar_Exploration.asp?AUTHOR=W Polar Exploration - Author W
http://www.glacierbooks.com/Book_Polar_Exploration.asp?AUTHOR=X Polar Exploration - Author X
http://www.glacierbooks.com/Book_Polar_Exploration.asp?AUTHOR=Y Polar Exploration - Author Y
http://www.glacierbooks.com/Book_Polar_Exploration.asp?AUTHOR=Z Polar Exploration - Author Z
http://www.glacierbooks.com/Book_New2.asp?AUTHOR=A New Books - Author A
http://www.glacierbooks.com/Book_New2.asp?AUTHOR=B New Books - Author B
http://www.glacierbooks.com/Book_New2.asp?AUTHOR=C New Books - Author C
http://www.glacierbooks.com/Book_New2.asp?AUTHOR=D New Books - Author D
http://www.glacierbooks.com/Book_New2.asp?AUTHOR=E New Books - Author E
http://www.glacierbooks.com/Book_New2.asp?AUTHOR=F New Books - Author F
http://www.glacierbooks.com/Book_New2.asp?AUTHOR=G New Books - Author G
http://www.glacierbooks.com/Book_New2.asp?AUTHOR=H New Books - Author H
http://www.glacierbooks.com/Book_New2.asp?AUTHOR=I New Books - Author I
http://www.glacierbooks.com/Book_New2.asp?AUTHOR=J New Books - Author J
http://www.glacierbooks.com/Book_New2.asp?AUTHOR=K New Books - Author K
http://www.glacierbooks.com/Book_New2.asp?AUTHOR=L New Books - Author L
http://www.glacierbooks.com/Book_New2.asp?AUTHOR=M New Books - Author M
http://www.glacierbooks.com/Book_New2.asp?AUTHOR=N New Books - Author N
http://www.glacierbooks.com/Book_New2.asp?AUTHOR=O New Books - Author O
http://www.glacierbooks.com/Book_New2.asp?AUTHOR=P New Books - Author P
http://www.glacierbooks.com/Book_New2.asp?AUTHOR=Q New Books - Author Q
http://www.glacierbooks.com/Book_New2.asp?AUTHOR=R New Books - Author R
http://www.glacierbooks.com/Book_New2.asp?AUTHOR=S New Books - Author S
http://www.glacierbooks.com/Book_New2.asp?AUTHOR=T New Books - Author T
http://www.glacierbooks.com/Book_New2.asp?AUTHOR=U New Books - Author U
http://www.glacierbooks.com/Book_New2.asp?AUTHOR=V New Books - Author V
http://www.glacierbooks.com/Book_New2.asp?AUTHOR=W New Books - Author W
http://www.glacierbooks.com/Book_New2.asp?AUTHOR=X New Books - Author X
http://www.glacierbooks.com/Book_New2.asp?AUTHOR=Y New Books - Author Y
http://www.glacierbooks.com/Book_New2.asp?AUTHOR=Z New Books - Author Z
http://www.glacierbooks.com/Magazines_Journals2.asp?AUTHOR=A Magazines & Journals - Author A
http://www.glacierbooks.com/Magazines_Journals2.asp?AUTHOR=B Magazines & Journals - Author B
http://www.glacierbooks.com/Magazines_Journals2.asp?AUTHOR=C Magazines & Journals - Author C
http://www.glacierbooks.com/Magazines_Journals2.asp?AUTHOR=D Magazines & Journals - Author D
http://www.glacierbooks.com/Magazines_Journals2.asp?AUTHOR=E Magazines & Journals - Author E
http://www.glacierbooks.com/Magazines_Journals2.asp?AUTHOR=F Magazines & Journals - Author F
http://www.glacierbooks.com/Magazines_Journals2.asp?AUTHOR=G Magazines & Journals - Author G
http://www.glacierbooks.com/Magazines_Journals2.asp?AUTHOR=H Magazines & Journals - Author H
http://www.glacierbooks.com/Magazines_Journals2.asp?AUTHOR=I Magazines & Journals - Author I
http://www.glacierbooks.com/Magazines_Journals2.asp?AUTHOR=J Magazines & Journals - Author J
http://www.glacierbooks.com/Magazines_Journals2.asp?AUTHOR=K Magazines & Journals - Author K
http://www.glacierbooks.com/Magazines_Journals2.asp?AUTHOR=L Magazines & Journals - Author L
http://www.glacierbooks.com/Magazines_Journals2.asp?AUTHOR=M Magazines & Journals - Author M
http://www.glacierbooks.com/Magazines_Journals2.asp?AUTHOR=N Magazines & Journals - Author N
http://www.glacierbooks.com/Magazines_Journals2.asp?AUTHOR=O Magazines & Journals - Author O
http://www.glacierbooks.com/Magazines_Journals2.asp?AUTHOR=P Magazines & Journals - Author P
http://www.glacierbooks.com/Magazines_Journals2.asp?AUTHOR=Q Magazines & Journals - Author Q
http://www.glacierbooks.com/Magazines_Journals2.asp?AUTHOR=R Magazines & Journals - Author R
http://www.glacierbooks.com/Magazines_Journals2.asp?AUTHOR=S Magazines & Journals - Author S
http://www.glacierbooks.com/Magazines_Journals2.asp?AUTHOR=T Magazines & Journals - Author T
http://www.glacierbooks.com/Magazines_Journals2.asp?AUTHOR=U Magazines & Journals - Author U
http://www.glacierbooks.com/Magazines_Journals2.asp?AUTHOR=V Magazines & Journals - Author V
http://www.glacierbooks.com/Magazines_Journals2.asp?AUTHOR=W Magazines & Journals - Author W
http://www.glacierbooks.com/Magazines_Journals2.asp?AUTHOR=X Magazines & Journals - Author X
http://www.glacierbooks.com/Magazines_Journals2.asp?AUTHOR=Y Magazines & Journals - Author Y
http://www.glacierbooks.com/Magazines_Journals2.asp?AUTHOR=Z Magazines & Journals - Author Z
http://www.glacierbooks.com/Book_Miscellaneous.asp?AUTHOR=A Miscellaneous - Author A
http://www.glacierbooks.com/Book_Miscellaneous.asp?AUTHOR=B Miscellaneous - Author B
http://www.glacierbooks.com/Book_Miscellaneous.asp?AUTHOR=C Miscellaneous - Author C
http://www.glacierbooks.com/Book_Miscellaneous.asp?AUTHOR=D Miscellaneous - Author D
http://www.glacierbooks.com/Book_Miscellaneous.asp?AUTHOR=E Miscellaneous - Author E
http://www.glacierbooks.com/Book_Miscellaneous.asp?AUTHOR=F Miscellaneous - Author F
http://www.glacierbooks.com/Book_Miscellaneous.asp?AUTHOR=G Miscellaneous - Author G
http://www.glacierbooks.com/Book_Miscellaneous.asp?AUTHOR=H Miscellaneous - Author H
http://www.glacierbooks.com/Book_Miscellaneous.asp?AUTHOR=I Miscellaneous - Author I
http://www.glacierbooks.com/Book_Miscellaneous.asp?AUTHOR=J Miscellaneous - Author J
http://www.glacierbooks.com/Book_Miscellaneous.asp?AUTHOR=K Miscellaneous - Author K
http://www.glacierbooks.com/Book_Miscellaneous.asp?AUTHOR=L Miscellaneous - Author L
http://www.glacierbooks.com/Book_Miscellaneous.asp?AUTHOR=M Miscellaneous - Author M
http://www.glacierbooks.com/Book_Miscellaneous.asp?AUTHOR=N Miscellaneous - Author N
http://www.glacierbooks.com/Book_Miscellaneous.asp?AUTHOR=O Miscellaneous - Author O
http://www.glacierbooks.com/Book_Miscellaneous.asp?AUTHOR=P Miscellaneous - Author P
http://www.glacierbooks.com/Book_Miscellaneous.asp?AUTHOR=Q Miscellaneous - Author Q
http://www.glacierbooks.com/Book_Miscellaneous.asp?AUTHOR=R Miscellaneous - Author R
http://www.glacierbooks.com/Book_Miscellaneous.asp?AUTHOR=S Miscellaneous - Author S
http://www.glacierbooks.com/Book_Miscellaneous.asp?AUTHOR=T Miscellaneous - Author T
http://www.glacierbooks.com/Book_Miscellaneous.asp?AUTHOR=U Miscellaneous - Author U
http://www.glacierbooks.com/Book_Miscellaneous.asp?AUTHOR=V Miscellaneous - Author V
http://www.glacierbooks.com/Book_Miscellaneous.asp?AUTHOR=W Miscellaneous - Author W
http://www.glacierbooks.com/Book_Miscellaneous.asp?AUTHOR=X Miscellaneous - Author X
http://www.glacierbooks.com/Book_Miscellaneous.asp?AUTHOR=Y Miscellaneous - Author Y
http://www.glacierbooks.com/Book_Miscellaneous.asp?AUTHOR=Z Miscellaneous - Author Z
http://www.glacierbooks.com/GlacierBooks_Contact.html Contact and Enquiry
http://www.glacierbooks.com/GlacierBooks_BooksWanted.html Books Wanted
http://www.glacierbooks.com/GlacierBooks_News.asp News
http://www.glacierbooks.com/GlacierBooks_FeaturedBooks.asp Featured Books
http://www.glacierbooks.com/GlacierBooks_VisitorsWelcome.html Visitors Welcome
http://www.glacierbooks.com/GlacierBooks_Links.asp Links
http://www.glacierbooks.com/GlacierBooks_TermsConditions.html Terms and Conditions
Glacier Books Red Line
PLEASE CONTACT US - info@glacierbooks.com - TEL: +44 (0)1796 470056
GLACIER BOOKS, ARD-DARACH, STRATHVIEW TERRACE, PITLOCHRY, SCOTLAND. PH16 5AT
SITE MAP
<% Glacier.Close() Set Glacier = Nothing %>