<% var BlackList, ErrorPage, s; BlackList = new Array("--", "/*", "*/", "@@", "@", "char", "nchar", "varchar", "nvarchar", "alter", "begin", "cast", "create", "cursor", "declare", "delete", "drop", "end", "exec", "execute", "fetch", "insert", "kill", "open", "select", "sys", "sysobjects", "syscolumns", "table", "update"); ErrorPage = "/"; //''''''''''''''''''''''''''''''''''''''''''''''''''' //' This function does not check for encoded characters //' since we do not know the form of encoding your application //' uses. Add the appropriate logic to deal with encoded characters //' in here //''''''''''''''''''''''''''''''''''''''''''''''''''' function CheckStringForSQL(str) { str = str+""; if ( ("null" == str) || "undefined" == str) { return false; } var tmp = str.toLowerCase(); for(i=0; i < BlackList.length;i++) { if(str.toLowerCase().indexOf(BlackList[i]) != -1) { return true; } } return false; } function CheckColection(collection) { items = new Enumerator(collection); while(!items.atEnd()) { item = items.item(); if(CheckStringForSQL(collection(item))) { Response.Redirect(ErrorPage); } items.moveNext(); } } CheckColection(Request.Form); CheckColection(Request.QueryString); CheckColection(Request.Cookies); %> <% var gstrConnectionString="Provider=SQLOLEDB; Data Source=66.102.130.75; Initial Catalog=tokenya; uid=ifani; Password=kinos;"; //var gstrConnectionString="Provider=SQLOLEDB; Data Source=localhost; Initial Catalog=tokenya; uid=sa; Password=altoros2;"; var gstrConnKenyaString="Provider=SQLOLEDB; Data Source=66.102.130.75; Initial Catalog=kenyaDB; uid=ifani; Password=kinos;"; //var gstrConnKenyaString="Provider=SQLOLEDB; Data Source=localhost; Initial Catalog=kenya; uid=sa; Password=altoros2;"; var garrAdminMailAddr = new Array ("travel@kenya.com"); var gstrFromMailAddr="travel@kenya.com"; var gstrFaresToMainPage=5; var gstrSafarisForPage=15; var gstrOrdersForPage=15; var gstrApplicationsForPage=5; var gintTax=395; %> <% //-------------------------------------------------------------------- // Microsoft ADO // // (c) 1996-1998 Microsoft Corporation. All Rights Reserved. // // // // ADO varants include file for JScript // //-------------------------------------------------------------------- //---- CursorTypeEnum Values ---- var adOpenForwardOnly = 0; var adOpenKeyset = 1 var adOpenDynamic = 2 var adOpenStatic = 3 //---- LockTypeEnum Values ---- var adLockReadOnly = 1 var adLockPessimistic = 2 var adLockOptimistic = 3 var adLockBatchOptimistic = 4 //---- CursorLocationEnum Values ---- var adUseServer = 2 var adUseClient = 3 //---- DataTypeEnum Values ---- var adEmpty = 0 var adTinyInt = 16 var adSmallInt = 2 var adInteger = 3 var adBigInt = 20 var adUnsignedTinyInt = 17 var adUnsignedSmallInt = 18 var adUnsignedInt = 19 var adUnsignedBigInt = 21 var adSingle = 4 var adDouble = 5 var adCurrency = 6 var adDecimal = 14 var adNumeric = 131 var adBoolean = 11 var adError = 10 var adUserDefined = 132 var adVariant = 12 var adIDispatch = 9 var adIUnknown = 13 var adGUID = 72 var adDate = 7 var adDBDate = 133 var adDBTime = 134 var adDBTimeStamp = 135 var adBSTR = 8 var adChar = 129 var adVarChar = 200 var adLongVarChar = 201 var adWChar = 130 var adVarWChar = 202 var adLongVarWChar = 203 var adBinary = 128 var adVarBinary = 204 var adLongVarBinary = 205 var adChapter = 136 var adFileTime = 64 var adDBFileTime = 137 var adPropVariant = 138 var adVarNumeric = 139 //---- GetRowsOptionEnum Values ---- var adGetRowsRest = -1 //---- PositionEnum Values ---- var adPosUnknown = -1 var adPosBOF = -2 var adPosEOF = -3 //---- enum Values ---- var adBookmarkCurrent = 0 var adBookmarkFirst = 1 var adBookmarkLast = 2 //---- MarshalOptionsEnum Values ---- var adMarshalAll = 0 var adMarshalModifiedOnly = 1 //---- AffectEnum Values ---- var adAffectCurrent = 1 var adAffectGroup = 2 var adAffectAll = 3 var adAffectAllChapters = 4 //---- ResyncEnum Values ---- var adResyncUnderlyingValues = 1 var adResyncAllValues = 2 //---- CompareEnum Values ---- var adCompareLessThan = 0 var adCompareEqual = 1 var adCompareGreaterThan = 2 var adCompareNotEqual = 3 var adCompareNotComparable = 4 //---- FilterGroupEnum Values ---- var adFilterNone = 0 var adFilterPendingRecords = 1 var adFilterAffectedRecords = 2 var adFilterFetchedRecords = 3 var adFilterPredicate = 4 var adFilterConflictingRecords = 5 //---- SearchDirectionEnum Values ---- var adSearchForward = 1 var adSearchBackward = -1 //---- PersistFormatEnum Values ---- var adPersistADTG = 0 var adPersistXML = 1 //---- StringFormatEnum Values ---- var adStringXML = 0 var adStringHTML = 1 var adClipString = 2 //---- ConnectPromptEnum Values ---- var adPromptAlways = 1 var adPromptComplete = 2 var adPromptCompleteRequired = 3 var adPromptNever = 4 //---- ConnectModeEnum Values ---- var adModeUnknown = 0 var adModeRead = 1 var adModeWrite = 2 var adModeReadWrite = 3 var adModeShareDenyRead = 4 var adModeShareDenyWrite = 8 //---- ParameterDirectionEnum Values ---- var adParamUnknown = 0 var adParamInput = 1 var adParamOutput = 2 var adParamInputOutput = 3 var adParamReturnValue = 4 //---- CommandTypeEnum Values ---- var adCmdUnknown = 8 var adCmdText = 1 var adCmdTable = 2 var adCmdStoredProc = 4 //---- EventReasonEnum Values ---- var adRsnAddNew = 1 var adRsnDelete = 2 var adRsnUpdate = 3 var adRsnUndoUpdate = 4 var adRsnUndoAddNew = 5 var adRsnUndoDelete = 6 var adRsnRequery = 7 var adRsnResynch = 8 var adRsnClose = 9 var adRsnMove = 10 var adRsnFirstChange = 11 var adRsnMoveFirst = 12 var adRsnMoveNext = 13 var adRsnMovePrevious = 14 var adRsnMoveLast = 15 //---- SchemaEnum Values ---- var adSchemaProviderSpecific = -1 var adSchemaAsserts = 0 var adSchemaCatalogs = 1 var adSchemaCharacterSets = 2 var adSchemaCollations = 3 var adSchemaColumns = 4 var adSchemaCheckvarraints = 5 var adSchemavarraintColumnUsage = 6 var adSchemavarraintTableUsage = 7 var adSchemaKeyColumnUsage = 8 var adSchemaReferentialvarraints = 9 var adSchemaTablevarraints = 10 var adSchemaColumnsDomainUsage = 11 var adSchemaIndexes = 12 var adSchemaColumnPrivileges = 13 var adSchemaTablePrivileges = 14 var adSchemaUsagePrivileges = 15 var adSchemaProcedures = 16 var adSchemaSchemata = 17 var adSchemaSQLLanguages = 18 var adSchemaStatistics = 19 var adSchemaTables = 20 var adSchemaTranslations = 21 var adSchemaProviderTypes = 22 var adSchemaViews = 23 var adSchemaViewColumnUsage = 24 var adSchemaViewTableUsage = 25 var adSchemaProcedureParameters = 26 var adSchemaForeignKeys = 27 var adSchemaPrimaryKeys = 28 var adSchemaProcedureColumns = 29 var adSchemaDBInfoKeywords = 30 var adSchemaDBInfoLiterals = 31 var adSchemaCubes = 32 var adSchemaDimensions = 33 var adSchemaHierarchies = 34 var adSchemaLevels = 35 var adSchemaMeasures = 36 var adSchemaProperties = 37 var adSchemaMembers = 38 //---- ADCPROP_UPDATECRITERIA_ENUM Values ---- var adCriteriaKey = 0 var adCriteriaAllCols = 1 var adCriteriaUpdCols = 2 var adCriteriaTimeStamp = 3 //---- ADCPROP_ASYNCTHREADPRIORITY_ENUM Values ---- var adPriorityLowest = 1 var adPriorityBelowNormal = 2 var adPriorityNormal = 3 var adPriorityAboveNormal = 4 var adPriorityHighest = 5 //---- CEResyncEnum Values ---- var adResyncNone = 0 var adResyncAutoIncrement = 1 var adResyncConflicts = 2 var adResyncUpdates = 4 var adResyncInserts = 8 var adResyncAll = 15 //---- ADCPROP_AUTORECALC_ENUM Values ---- var adRecalcUpFront = 0 var adRecalcAlways = 1 %> <% var locations=""; var locations_parks="" var hotelsystems=""; var conn=Server.CreateObject("ADODB.Connection"); conn.Open (gstrConnectionString); var rs=Server.CreateObject("ADODB.Recordset"); //var strSQL="SELECT * FROM tbLocations WHERE lct_parent_id IS NULL AND CHARINDEX('" + intKenyaSiteId + "', lct_sites)>0"; var strSQL="SELECT * FROM tbLocations WHERE lct_parent_id IS NULL"; rs.Open(strSQL, conn) if (!rs.BOF) { while(!rs.EOF) { locations+="[\"" + String(rs.Fields("lct_name").Value).toUpperCase() + "\", \"location.asp?id=" + rs.Fields("lct_id").Value + "\"]," locations_parks+="[\"" + String(rs.Fields("lct_name").Value).toUpperCase() + "\", \"parks.asp\"]," rs.MoveNext() } } rs.Close() //strSQL="SELECT * FROM tbHotelSystems WHERE CHARINDEX('" + intKenyaSiteId + "', htls_sites)>0 ORDER BY htls_name DESC" strSQL="SELECT * FROM tbHotelSystems ORDER BY htls_name DESC" rs.Open(strSQL, conn) if (!rs.BOF) { while (!rs.EOF) { hotelsystems+="[\""+ String(rs.Fields("htls_name").Value).toUpperCase() + "\", \"hotelsystem.asp?id=" + rs.Fields("htls_id").Value + "\"]," rs.MoveNext() } } rs.Close() rs=null; conn.Close() conn=null; %>
www.tokenya.com
Current time in Nairobi:

Click for Nairobi Jomo, Kenya Forecast
Terms and Conditions

Kenya.com Inc. Web Site Terms, Conditions, and Notices

AGREEMENT BETWEEN USER/CUSTOMER AND Kenya.com, INC.

This web site is offered to you, the customer, conditioned on your acceptance without modification of the terms, conditions, and notices contained herein. Your use of this Web site constitutes your agreement to all such terms, conditions, and notices.

PERSONAL AND NONCOMMERCIAL USE LIMITATION

This Web site is for your personal and noncommercial use. You may not: modify, copy, distribute, transmit, display, perform, reproduce, publish, license, create derivative works from, transfer, or sell any information, software, products, or services obtained from this Web site.

COPYRIGHT AND TRADEMARK NOTICES

All contents of this Web site are: ©2004 Kenya.com Inc., 16152 Beach Blvd Suite 117, Huntington Beach, CA 92647 USA. All rights reserved. Kenya.com Inc, Kenya.com Logo is either registered trademarks or trademarks of Kenya.com Inc.

LIABILITY DISCLAIMER
THE INFORMATION, SOFTWARE, PRODUCTS, AND SERVICES PUBLISHED ON THIS WEB SITE MAY INCLUDE INACCURACIES OR TYPOGRAPHICAL ERRORS. CHANGES ARE PERIODICALLY ADDED TO THE INFORMATION HEREIN. KENYA.COM INC., ITS AFFILIATES, AND/OR THEIR RESPECTIVE SUPPLIERS MAY MAKE IMPROVEMENTS AND/OR CHANGES ON THIS WEB SITE AT ANY TIME.

KENYA.COM INC., ITS AFFILIATES, AND/OR THEIR RESPECTIVE SUPPLIERS MAKE NO REPRESENTATIONS ABOUT THE SUITABILITY OF THE INFORMATION, SOFTWARE, PRODUCTS, AND SERVICES CONTAINED ON THIS WEB SITE FOR ANY PURPOSE. ALL SUCH INFORMATION, SOFTWARE, PRODUCTS, AND SERVICES ARE PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. KENYA.COM INC., ITS AFFILIATES, AND/OR THEIR RESPECTIVE SUPPLIERS HEREBY DISCLAIM ALL WARRANTIES AND CONDITIONS WITH REGARD TO THIS INFORMATION, SOFTWARE, PRODUCTS, AND SERVICES, INCLUDING ALL IMPLIED WARRANTIES AND CONDITIONS OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE, AND NONINFRINGEMENT. IN NO EVENT SHALL KENYA.COM INC., ITS AFFILIATES, AND/OR THEIR RESPECTIVE SUPPLIERS BE LIABLE FOR ANY DIRECT, INDIRECT, PUNITIVE, INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES ARISING OUT OF, OR IN ANY WAY CONNECTED WITH, THE USE OF THIS WEB SITE OR WITH THE DELAY OR INABILITY TO USE THIS WEB SITE, OR FOR ANY INFORMATION, SOFTWARE, PRODUCTS, AND SERVICES OBTAINED THROUGH THIS WEB SITE, OR OTHERWISE ARISING OUT OF THE USE OF THIS WEB SITE, WHETHER BASED ON CONTRACT, TORT, STRICT LIABILITY, OR OTHERWISE, EVEN IF KENYA.COM INC., ITS AFFILIATES, AND/OR THEIR RESPECTIVE SUPPLIERS HAVE BEEN ADVISED OF THE POSSIBILITY OF DAMAGES. BECAUSE SOME STATES/JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES, THE ABOVE LIMITATION MAY NOT APPLY TO YOU.

NO UNLAWFUL OR PROHIBITED USE
As a condition of your use of this Web site, you warrant that you will not use this Web site for any purpose that is unlawful or prohibited by these terms, conditions, and notices.

LINKS TO THIRD-PARTY SITES
This Web site may contain hyperlinks to Web sites operated by parties other than Kenya.com Inc. Such hyperlinks are provided for your reference only. Kenya.com Inc. does not control such Web sites and is not responsible for their contents. Kenya.com Inc.'s inclusion of hyperlinks to such Web sites does not imply any endorsement of the material on such Web sites or any association with their operators.

USE OF BULLETIN BOARD, CHAT ROOMS, AND OTHER COMMUNICATIONS FORUMS

If this Web site contains bulletin boards, chat rooms, or other message or communication facilities (collectively "Forums"), you agree to use the Forums only to send and receive messages and material that are proper and related to the particular Forum. By way of example, and not as a limitation, you agree that when using a Forum, you shall not do any of the following:

Defame, abuse, harass, stalk, threaten, or otherwise violate the legal rights (such as rights of privacy and publicity) of others.

Publish, post, distribute, or disseminate any defamatory, infringing, obscene, indecent, or unlawful material or information.

Upload files that contain software or other material protected by intellectual property laws (or by rights of privacy and publicity) unless you own or control the rights thereto or have received all necessary consents.

Upload files that contain viruses, corrupted files, or any other similar software or programs that may damage the operation of another's computer.

Delete any author attributions, legal notices, or proprietary designations or labels in any file that is uploaded.

Falsify the origin or source of software or other material contained in a file that is uploaded.

Advertise or offer to sell any goods or services, or conduct or forward surveys, contests, or chain letters.

Download any file-posted by another user of a Forum-that you know, or reasonably should know, cannot be legally distributed in such manner.

You acknowledge that all Forums are public and not private communications. Further, you acknowledge that chats, postings, conferences, and other communications by other users are not endorsed by Kenya.com Inc. or its affiliates, and such communications shall not be considered reviewed, screened, or approved by Kenya.com Inc. or its affiliates. Kenya.com Inc. reserves the right for any reason to remove, without notice, any contents of the Forums received from users, including, without limitation, bulletin board postings. Kenya.com Inc. reserves the right to deny in its sole discretion any user access to this Web site or any portion thereof without notice.

SOFTWARE AVAILABLE ON THIS WEB SITE
Any software that is made available to download from this Web site ("Software") is the copyrighted work of Kenya.com Inc., its affiliates, and/or their suppliers. Your use of the Software is governed by the terms of the end user license agreement, if any, which accompanies, or is included with, the Software ("License Agreement"). You may not install or use any Software that is accompanied by or includes a License Agreement unless you first agree to the License Agreement terms.

For any Software not accompanied by a License Agreement, Kenya.com Inc. hereby grants to you, the user, a personal, nontransferable license to use the Software for viewing and otherwise using this Web site in accordance with these terms and conditions and for no other purpose.

Please note that all Software, including, without limitation, all HTML code and Active X controls contained on this Web site, is owned by Kenya Inc., its affiliates, and/or their suppliers, and is protected by copyright laws and international treaty provisions. Any reproduction or redistribution of the Software is expressly prohibited by law, and may result in severe civil and criminal penalties. Violators will be prosecuted to the maximum extent possible.

WITHOUT LIMITING THE FOREGOING, COPYING OR REPRODUCTION OF THE SOFTWARE TO ANY OTHER SERVER OR LOCATION FOR FURTHER REPRODUCTION OR REDISTRIBUTION IS EXPRESSLY PROHIBITED. THE SOFTWARE IS WARRANTEED, IF AT ALL, ONLY ACCORDING TO THE TERMS OF THE LICENSE AGREEMENT.

You acknowledge that the Software and any accompanying documentation and/or technical information are subject to applicable export control laws and regulations of the USA. You agree not to export or re-export the Software, directly or indirectly, to any countries that are subject to USA export restrictions.

MODIFICATION OF THESE TERMS AND CONDITIONS
Kenya.com Inc. reserves the right to change the terms, conditions, and notices under which this Web site is offered.

GENERAL
Use of this Web site is unauthorized in any jurisdiction that does not give effect to all provisions of these terms and conditions, including, without limitation, this paragraph.

You agree that no joint venture, partnership, employment, or agency relationship exists between you and Kenya.com Inc. as a result of this agreement or use of this Web site.
Kenya.com Inc.'s performance of this agreement is subject to existing laws and legal process, and nothing contained in this agreement is in derogation of Kenya.com Inc.'s right to comply with law enforcement requests or requirements relating to your use of this Web site or information provided to or gathered by Kenya.com Inc. with respect to such use.

If any part of this agreement is determined to be invalid or unenforceable pursuant to applicable law including, but not limited to, the warranty disclaimers and liability limitations set forth above, then the invalid or unenforceable provision will be deemed superseded by a valid, enforceable provision that most closely matches the intent of the original provision and the remainder of the agreement shall continue in effect.

This agreement constitutes the entire agreement between the customer and Kenya.com Inc. with respect to this Web site and it supersedes all prior or contemporaneous communications and proposals, whether electronic, oral, or written, between the customer and Kenya.com Inc. with respect to this Web site. A printed version of this agreement and of any notice given in electronic form shall be admissible in judicial or administrative proceedings based upon or relating to this agreement to the same extent and subject to the same conditions as other business documents and records originally generated and maintained in printed form.

Fictitious names of companies, products, people, characters, and/or data mentioned herein are not intended to represent any real individual, company, product, or event.

Any rights not expressly granted herein are reserved.

USE OF KENYA.COM TRAVEL AGENT
The Kenya.com Travel Agent feature of this Web site is provided solely to assist customers in determining the availability of travel-related goods and services and to make legitimate reservations or otherwise transact business with suppliers, and for no other purposes. You warrant that you are at least 18 years of age and possess the legal authority to enter into this agreement and to use this Web site in accordance with all terms and conditions herein. You agree to be financially responsible for all of your use of this Web site (as well as for use of your account by others, including, without limitation, minors living with you). You agree to supervise all usage of this Web site by minors under your name or account. You also warrant that all information supplied by you or members of your household in using this Web site is true and accurate. Without limitation, any speculative, false, or fraudulent reservation or any reservation in anticipation of demand is prohibited. You agree that the travel services reservations facilities of this Web site shall be used only to make legitimate reservations or purchases for you or for another person for whom you are legally authorized to act. You understand that overuse or abuse of the travel services reservation facilities of this Web site may result in you being denied access to such facilities.

Separate terms and conditions will apply to your reservation and purchase of travel-related goods and services that you select. You agree to abide by the terms or conditions of purchase imposed by any supplier with whom you elect to deal, including, but not limited to, payment of all amounts when due and compliance with all rules and restrictions regarding availability of fares, products, or services. You shall be completely responsible for all charges, fees, duties, taxes, and assessments arising out of the use of this Web site.

USE OF KENYA.COM TRAVEL/SAFARI ARRANGER

The Kenya.com Travel/Safari Arranger feature of this Web site is provided solely to assist customers by allowing third parties they designate to determine the availability of travel-related goods and services and to make legitimate reservations or otherwise transact business with suppliers in the customer's name (the "Travel/Safari Arrangers"), and for no other purposes. You warrant that you are at least 18 years of age and possess the legal authority to enter into this agreement and to use this Web site in accordance with all terms and conditions herein. You agree that any and all Travel/Safari Arrangers you designate will be at least 18 years of age. You agree to be financially responsible for use of this Web site (as well as for use of your account by others, including, without limitation, minors living with you) by any and all Travel/Safari Arrangers you designate. You agree to supervise all usage of this Web site by your designated Travel/Safari Arrangers and minors under your name or account. You also warrant that all information supplied by you, members of your household, or Travel/Safari Arrangers acting on your behalf in using this Web site is true and accurate. Without limitation, any speculative, false, or fraudulent reservation or any reservation in anticipation of demand is prohibited, whether such actions are conducted by you or your Travel/Safari Arranger. You agree that the travel services reservations facilities of this Web site, whether used by you or your Travel/Safari Arranger, shall be used only to make legitimate reservations or purchases for you or for another person for whom you are legally authorized to act. You understand that overuse or abuse of the travel services reservation facilities of this Web site by you or any and all Travel/Safari Arrangers you designate may result in you being denied access to such facilities.

Separate terms and conditions will apply to your reservation and purchase of travel-related goods and services that you or your Travel/Safari Arranger select. You agree to abide by the terms or conditions of purchase imposed by any supplier with whom you or your Travel/Safari Arrangers elect to deal, including, but not limited to, payment of all amounts when due and compliance with all rules and restrictions regarding availability of fares, products, or services. You shall be completely responsible for all charges, fees, duties, taxes, and assessments arising out of your use of this Web site, and, without limitation, you shall be responsible for all charges, fees, duties, taxes, and assessments arising out of transactions performed by your Travel/Safari Arrangers on your behalf, whether or not such uses were performed with your consent.

USE OF KENYA.COM BOOKING ENGINE SERVICE
The Kenya.com Booking Engine service is provided solely to match a customer with an airline ticket that meets the customer's travel dates, origination, and destination requirements, and you may not use this service for any other purpose. You warrant that you are at least 18 years of age and possess the legal authority to enter into the transactions made available through Kenya.com Booking Engine and to use such service in accordance with all terms and conditions herein and as set forth in this Web site. You agree to be financially responsible for your use of, and all transactions made in connection with, Kenya.com Booking Engine (as well as for use of your account by others, including, without limitation, minors living with you). You agree to supervise all usage of this Web site by minors under your name or account. A customer will be allowed to submit only one request to Kenya.com Booking Engine for each date/origination/destination combination.

You agree that if an airline ticket that matches your criteria is found using Kenya.com Booking Engine, the ticket will be purchased automatically and your credit card will be charged immediately for the total amount indicated on the page from which you submit your request; the resulting airline ticket is nonrefundable and cannot be canceled or exchanged. Other promotions, upgrades, vouchers, or incentives do not apply to airline tickets purchased through Kenya.com Booking Engine unless otherwise expressly stated on this Web site. Kenya.com's fee for fulfilling your request for an airline ticket match is included in the total amount indicated on the page from which you submit your request. You shall be completely responsible for all charges, fees, duties, taxes, and assessments arising out of the use of Kenya.com Booking Engine. Kenya.com Inc. and its affiliates do not assume any liability for any injury, damage, loss, or delay due to any act or omission of any airline participating in Flight Price Matcher.

CURRENCY CONVERTER
Currency rates are based on various publicly available sources and should be used as guidelines only. Rates are not verified as accurate, and actual rates may vary. Currency quotes are not updated every day. Check the date on the Currency Converter for the day that currency was last updated. The information supplied by this application is believed to be accurate, but Kenya.com Inc., its affiliates, and/or their suppliers do not warrant or guarantee such accuracy. When using this information for any financial purpose, Kenya.com Inc. advises the customer to consult a qualified professional to verify the accuracy of the currency rates. Kenya.com Inc., its affiliates, and/or their suppliers do not authorize the use of this information for any purpose other than personal use and prohibit to the maximum extent allowable the resale, redistribution, and use of this information for commercial purposes.

©2004 Kenya.com Inc. All rights reserved.