|
|
|
|
The
scale of the Himalayas makes them the ultimate
trekking destination in the world. Nowhere else
is such exalted beauty matched with such overwhelming
remoteness.
Our
treks take you through amazing mountain landscapes
with a dazzling selection of contrasting scenes,
climates and cultures. Retracing ancient trade
routes through high passes to Tibet, meanderings
in the vicinity of the Nanda Devi (7818 m) Sanctuary.
.. exploring the origins of India's holiest
rivers at Gangotri. A hands-on experience of
the Himalayas.
Trek
with Wildrift
Wildrift specializes in explorations in the
Kumaon and Garhwal region of the Himalayas.
It is an indigenous Kumaoni organisation with
trained native guides. Our familiarity with
the region enables us to offer you less travelled
routes and are designed to promote cross-cultural
encounters
"At
the beginning I was just following a friend, a
friend who was going for a trek somewhere
in the Kumaon Hills.
One night train, one day jeep and we start walking.
I discover a space wide ,wild and free from the
realties of the city. I discover companions who,
step after step, were trying to understand me
and make me understand what life in the Himalayas
is all about. After that, I went for another trek
with the same companions. I don't know if there
is an illness of the mountains but now I m just
waiting for the next trek."
Sylvia,
IFCCI, Delhi -Summer trekker (2000)
|
Wildrift offers you:
* A meticulously planned itinerary.
*A path
less traveled.
*An intense
experience of the region, its people, food,
flora & fauna and the mountains.
*An opportunity
to preserve the Himalayan environment.
*Cultural
extension to select destinations
in northern India.
Safety is our primary concern and Wildrift Adventures
is one of the very few organisations in this
region equipped to handle mountain rescue.
|
| Journal
Title |
Journal
By |
Date |
Details |
More
Info |
<%
on error resume next
filePath ="../db/wildriftmks1.mdb"
'filePath ="../db/brainwise.mdb"
Set con = Server.CreateObject("ADODB.Connection")
con.Open "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" &server.MapPath(filePath)
SET rsTemp = Server.CreateObject("ADODB.Recordset")
rsTemp.CursorType = 1
rsTemp.Open "select * from journal ",con,3,3
DIM intPageRecords, intRecords, intRecordCount, intCurrentPage
DIM intNumberOfPages, intDisplayPage
intPageRecords = Request.Querystring("page")
IF intPageRecords = "" THEN
intPageRecords = 1 : intRecords = 1
END IF
intRecords = intPageRecords
intPageRecords = ((intPageRecords - 1) * 6) +1
intRecordCount = 0
IF NOT rsTemp.eof THEN
rsTemp.Move (intPageRecords - 1)
p=1
DO WHILE intRecordCount < 10 and NOT rsTemp.eof
strJId=rsTemp("JournalId")
strcommentBy=rsTemp("commentBy")
strJDate=rsTemp("journalDate")
strDesc1=rsTemp("journalDesc1")
strJTitle=rsTemp("journalTitle")
%>
| <%=strJTitle%>
|
<%=strcommentBy%>
|
<%=strJDate%>
|
<%=strDesc1%>
|
More
|
<%
rsTemp.MovenEXT
intRecordCount = intRecordCount +1
p=p+1
Loop
END IF
%>
|
|
|