<% strcon = "DSN=indiaplaza; UID=indiaplaza; PWD=vi62yaksql0704;" ' strcon = "DSN=dataserver; UID=indiaplaza; PWD=MpY9e0kamQBF;" Function IsVoided(orderIDToCheck, dbConnection) Dim recSetStatusCheck Set recSetStatusCheck = server.CreateObject("adodb.recordset") recSetStatusCheck.Open "select order_status_code from indiaplaza_profiles..ordergroup G where order_number = '" & orderIDToCheck & "'", dbConnection IsVoided = False ' if recSetStatusCheck.RecordCount > 0 Then if not recSetStatusCheck.EOF then if recSetStatusCheck("order_status_code") = 0 Then IsVoided = True End If End If recSetStatusCheck.Close Set recSetStatusCheck = Nothing End Function 'strcon = "DSN=newindia; UID=newindia; PWD=newindia;" 'strcon = "DSN=dataserver; UID=indiaplaza; PWD=INDI#PL#Z#;" 'strcon = "Provider=SQLOLEDB; Data Source=dataserver; Initial Catalog=indiaplazanew; User Id=ip; Password=!@#*()" %> <% '-------------------------------------------------------------------- ' Microsoft ADO ' ' (c) 1996-1998 Microsoft Corporation. All Rights Reserved. ' ' ' ' ADO constants include file for VBScript ' '-------------------------------------------------------------------- '---- CursorTypeEnum Values ---- Const adOpenForwardOnly = 0 Const adOpenKeyset = 1 Const adOpenDynamic = 2 Const adOpenStatic = 3 '---- CursorOptionEnum Values ---- Const adHoldRecords = &H00000100 Const adMovePrevious = &H00000200 Const adAddNew = &H01000400 Const adDelete = &H01000800 Const adUpdate = &H01008000 Const adBookmark = &H00002000 Const adApproxPosition = &H00004000 Const adUpdateBatch = &H00010000 Const adResync = &H00020000 Const adNotify = &H00040000 Const adFind = &H00080000 Const adSeek = &H00400000 Const adIndex = &H00800000 '---- LockTypeEnum Values ---- Const adLockReadOnly = 1 Const adLockPessimistic = 2 Const adLockOptimistic = 3 Const adLockBatchOptimistic = 4 '---- ExecuteOptionEnum Values ---- Const adRunAsync = &H00000010 Const adAsyncExecute = &H00000010 Const adAsyncFetch = &H00000020 Const adAsyncFetchNonBlocking = &H00000040 Const adExecuteNoRecords = &H00000080 '---- ConnectOptionEnum Values ---- Const adAsyncConnect = &H00000010 '---- ObjectStateEnum Values ---- Const adStateClosed = &H00000000 Const adStateOpen = &H00000001 Const adStateConnecting = &H00000002 Const adStateExecuting = &H00000004 Const adStateFetching = &H00000008 '---- CursorLocationEnum Values ---- Const adUseServer = 2 Const adUseClient = 3 '---- DataTypeEnum Values ---- Const adEmpty = 0 Const adTinyInt = 16 Const adSmallInt = 2 Const adInteger = 3 Const adBigInt = 20 Const adUnsignedTinyInt = 17 Const adUnsignedSmallInt = 18 Const adUnsignedInt = 19 Const adUnsignedBigInt = 21 Const adSingle = 4 Const adDouble = 5 Const adCurrency = 6 Const adDecimal = 14 Const adNumeric = 131 Const adBoolean = 11 Const adError = 10 Const adUserDefined = 132 Const adVariant = 12 Const adIDispatch = 9 Const adIUnknown = 13 Const adGUID = 72 Const adDate = 7 Const adDBDate = 133 Const adDBTime = 134 Const adDBTimeStamp = 135 Const adBSTR = 8 Const adChar = 129 Const adVarChar = 200 Const adLongVarChar = 201 Const adWChar = 130 Const adVarWChar = 202 Const adLongVarWChar = 203 Const adBinary = 128 Const adVarBinary = 204 Const adLongVarBinary = 205 Const adChapter = 136 Const adFileTime = 64 Const adDBFileTime = 137 Const adPropVariant = 138 Const adVarNumeric = 139 '---- FieldAttributeEnum Values ---- Const adFldMayDefer = &H00000002 Const adFldUpdatable = &H00000004 Const adFldUnknownUpdatable = &H00000008 Const adFldFixed = &H00000010 Const adFldIsNullable = &H00000020 Const adFldMayBeNull = &H00000040 Const adFldLong = &H00000080 Const adFldRowID = &H00000100 Const adFldRowVersion = &H00000200 Const adFldCacheDeferred = &H00001000 Const adFldKeyColumn = &H00008000 '---- EditModeEnum Values ---- Const adEditNone = &H0000 Const adEditInProgress = &H0001 Const adEditAdd = &H0002 Const adEditDelete = &H0004 '---- RecordStatusEnum Values ---- Const adRecOK = &H0000000 Const adRecNew = &H0000001 Const adRecModified = &H0000002 Const adRecDeleted = &H0000004 Const adRecUnmodified = &H0000008 Const adRecInvalid = &H0000010 Const adRecMultipleChanges = &H0000040 Const adRecPendingChanges = &H0000080 Const adRecCanceled = &H0000100 Const adRecCantRelease = &H0000400 Const adRecConcurrencyViolation = &H0000800 Const adRecIntegrityViolation = &H0001000 Const adRecMaxChangesExceeded = &H0002000 Const adRecObjectOpen = &H0004000 Const adRecOutOfMemory = &H0008000 Const adRecPermissionDenied = &H0010000 Const adRecSchemaViolation = &H0020000 Const adRecDBDeleted = &H0040000 '---- GetRowsOptionEnum Values ---- Const adGetRowsRest = -1 '---- PositionEnum Values ---- Const adPosUnknown = -1 Const adPosBOF = -2 Const adPosEOF = -3 '---- enum Values ---- Const adBookmarkCurrent = 0 Const adBookmarkFirst = 1 Const adBookmarkLast = 2 '---- MarshalOptionsEnum Values ---- Const adMarshalAll = 0 Const adMarshalModifiedOnly = 1 '---- AffectEnum Values ---- Const adAffectCurrent = 1 Const adAffectGroup = 2 Const adAffectAll = 3 Const adAffectAllChapters = 4 '---- ResyncEnum Values ---- Const adResyncUnderlyingValues = 1 Const adResyncAllValues = 2 '---- CompareEnum Values ---- Const adCompareLessThan = 0 Const adCompareEqual = 1 Const adCompareGreaterThan = 2 Const adCompareNotEqual = 3 Const adCompareNotComparable = 4 '---- FilterGroupEnum Values ---- Const adFilterNone = 0 Const adFilterPendingRecords = 1 Const adFilterAffectedRecords = 2 Const adFilterFetchedRecords = 3 Const adFilterPredicate = 4 Const adFilterConflictingRecords = 5 '---- SearchDirectionEnum Values ---- Const adSearchForward = 1 Const adSearchBackward = -1 '---- PersistFormatEnum Values ---- Const adPersistADTG = 0 Const adPersistXML = 1 '---- StringFormatEnum Values ---- Const adStringXML = 0 Const adStringHTML = 1 Const adClipString = 2 '---- ConnectPromptEnum Values ---- Const adPromptAlways = 1 Const adPromptComplete = 2 Const adPromptCompleteRequired = 3 Const adPromptNever = 4 '---- ConnectModeEnum Values ---- Const adModeUnknown = 0 Const adModeRead = 1 Const adModeWrite = 2 Const adModeReadWrite = 3 Const adModeShareDenyRead = 4 Const adModeShareDenyWrite = 8 Const adModeShareExclusive = &Hc Const adModeShareDenyNone = &H10 '---- IsolationLevelEnum Values ---- Const adXactUnspecified = &Hffffffff Const adXactChaos = &H00000010 Const adXactReadUncommitted = &H00000100 Const adXactBrowse = &H00000100 Const adXactCursorStability = &H00001000 Const adXactReadCommitted = &H00001000 Const adXactRepeatableRead = &H00010000 Const adXactSerializable = &H00100000 Const adXactIsolated = &H00100000 '---- XactAttributeEnum Values ---- Const adXactCommitRetaining = &H00020000 Const adXactAbortRetaining = &H00040000 '---- PropertyAttributesEnum Values ---- Const adPropNotSupported = &H0000 Const adPropRequired = &H0001 Const adPropOptional = &H0002 Const adPropRead = &H0200 Const adPropWrite = &H0400 '---- ErrorValueEnum Values ---- Const adErrInvalidArgument = &Hbb9 Const adErrNoCurrentRecord = &Hbcd Const adErrIllegalOperation = &Hc93 Const adErrInTransaction = &Hcae Const adErrFeatureNotAvailable = &Hcb3 Const adErrItemNotFound = &Hcc1 Const adErrObjectInCollection = &Hd27 Const adErrObjectNotSet = &Hd5c Const adErrDataConversion = &Hd5d Const adErrObjectClosed = &He78 Const adErrObjectOpen = &He79 Const adErrProviderNotFound = &He7a Const adErrBoundToCommand = &He7b Const adErrInvalidParamInfo = &He7c Const adErrInvalidConnection = &He7d Const adErrNotReentrant = &He7e Const adErrStillExecuting = &He7f Const adErrOperationCancelled = &He80 Const adErrStillConnecting = &He81 Const adErrNotExecuting = &He83 Const adErrUnsafeOperation = &He84 '---- ParameterAttributesEnum Values ---- Const adParamSigned = &H0010 Const adParamNullable = &H0040 Const adParamLong = &H0080 '---- ParameterDirectionEnum Values ---- Const adParamUnknown = &H0000 Const adParamInput = &H0001 Const adParamOutput = &H0002 Const adParamInputOutput = &H0003 Const adParamReturnValue = &H0004 '---- CommandTypeEnum Values ---- Const adCmdUnknown = &H0008 Const adCmdText = &H0001 Const adCmdTable = &H0002 Const adCmdStoredProc = &H0004 Const adCmdFile = &H0100 Const adCmdTableDirect = &H0200 '---- EventStatusEnum Values ---- Const adStatusOK = &H0000001 Const adStatusErrorsOccurred = &H0000002 Const adStatusCantDeny = &H0000003 Const adStatusCancel = &H0000004 Const adStatusUnwantedEvent = &H0000005 '---- EventReasonEnum Values ---- Const adRsnAddNew = 1 Const adRsnDelete = 2 Const adRsnUpdate = 3 Const adRsnUndoUpdate = 4 Const adRsnUndoAddNew = 5 Const adRsnUndoDelete = 6 Const adRsnRequery = 7 Const adRsnResynch = 8 Const adRsnClose = 9 Const adRsnMove = 10 Const adRsnFirstChange = 11 Const adRsnMoveFirst = 12 Const adRsnMoveNext = 13 Const adRsnMovePrevious = 14 Const adRsnMoveLast = 15 '---- SchemaEnum Values ---- Const adSchemaProviderSpecific = -1 Const adSchemaAsserts = 0 Const adSchemaCatalogs = 1 Const adSchemaCharacterSets = 2 Const adSchemaCollations = 3 Const adSchemaColumns = 4 Const adSchemaCheckConstraints = 5 Const adSchemaConstraintColumnUsage = 6 Const adSchemaConstraintTableUsage = 7 Const adSchemaKeyColumnUsage = 8 Const adSchemaReferentialConstraints = 9 Const adSchemaTableConstraints = 10 Const adSchemaColumnsDomainUsage = 11 Const adSchemaIndexes = 12 Const adSchemaColumnPrivileges = 13 Const adSchemaTablePrivileges = 14 Const adSchemaUsagePrivileges = 15 Const adSchemaProcedures = 16 Const adSchemaSchemata = 17 Const adSchemaSQLLanguages = 18 Const adSchemaStatistics = 19 Const adSchemaTables = 20 Const adSchemaTranslations = 21 Const adSchemaProviderTypes = 22 Const adSchemaViews = 23 Const adSchemaViewColumnUsage = 24 Const adSchemaViewTableUsage = 25 Const adSchemaProcedureParameters = 26 Const adSchemaForeignKeys = 27 Const adSchemaPrimaryKeys = 28 Const adSchemaProcedureColumns = 29 Const adSchemaDBInfoKeywords = 30 Const adSchemaDBInfoLiterals = 31 Const adSchemaCubes = 32 Const adSchemaDimensions = 33 Const adSchemaHierarchies = 34 Const adSchemaLevels = 35 Const adSchemaMeasures = 36 Const adSchemaProperties = 37 Const adSchemaMembers = 38 '---- SeekEnum Values ---- Const adSeekFirstEQ = &H1 Const adSeekLastEQ = &H2 Const adSeekAfterEQ = &H4 Const adSeekAfter = &H8 Const adSeekBeforeEQ = &H10 Const adSeekBefore = &H20 '---- ADCPROP_UPDATECRITERIA_ENUM Values ---- Const adCriteriaKey = 0 Const adCriteriaAllCols = 1 Const adCriteriaUpdCols = 2 Const adCriteriaTimeStamp = 3 '---- ADCPROP_ASYNCTHREADPRIORITY_ENUM Values ---- Const adPriorityLowest = 1 Const adPriorityBelowNormal = 2 Const adPriorityNormal = 3 Const adPriorityAboveNormal = 4 Const adPriorityHighest = 5 '---- CEResyncEnum Values ---- Const adResyncNone = 0 Const adResyncAutoIncrement = 1 Const adResyncConflicts = 2 Const adResyncUpdates = 4 Const adResyncInserts = 8 Const adResyncAll = 15 '---- ADCPROP_AUTORECALC_ENUM Values ---- Const adRecalcUpFront = 0 Const adRecalcAlways = 1 %> <% on error resume next Dim DataConn, cmdDC, rsDC,tablename,con, strcon,content1,content2 Dim Item,action,FSO Dim iFieldCount, iLoopVar Dim strLTorGT, iCriteria, strSortBy, strOrder dim imagelocation, name, price, description, categorydetail, thumbnail, endlink,item_id Dim rounding,country,city,cmin,totaltalktime,maintainencefee,connectionfee,dsubcatid,picture,compareprice Dim efCategory '********************************************************************************** '* Makes a Box Function makebox(width,bgcolor1,bgcolor2,fontcolor,fontsize) if fontsize="" then fontsize=3 if fontface="" then fontface="Arial, Helvetica, sans-serif" if width="" then width=600 if bgcolor1="" then bgcolor1="dddddd" if bgcolor2="" then bgcolor2="white" response.write("") response.write("") response.write("
") response.write(" ") response.write("") response.write("") response.write("") response.write("
Authorize Order
") end function '********************************************************************************** '* Closes the Box Function makeboxend() response.write("
") end function '********************************************************************************** '* Finishes dynamically generated links for the correct category per item_id's subcat_id Function Headfoot2(dsubcatid) Dim result3 select Case dsubcatid Case "101" endlink="majorcat=music&subcat=audiocds" Case "102" endlink="majorcat=music&subcat=audiocds" Case "103" endlink="majorcat=music&subcat=audiocds" Case "104" endlink="majorcat=videostore&subcat=dvd" Case "105" endlink="majorcat=videostore&subcat=dvd" Case "106" endlink="majorcat=videostore&subcat=dvd" Case "107" endlink="majorcat=books&subcat=books" Case "108" endlink="majorcat=books&subcat=magazines" Case "109" endlink="majorcat=books&subcat=cdroms" Case "110" endlink="majorcat=books&subcat=stationary" Case "111" endlink="majorcat=grocery&subcat=groceries" Case "112" endlink="majorcat=grocery&subcat=sweetssnacks" Case "113" endlink="majorcat=health&subcat=ayurvedic" Case "114" endlink="majorcat=health&subcat=beauty" Case "115" endlink="majorcat=health&subcat=beauty" Case "116" endlink="majorcat=home&subcat=appliances" Case "117" endlink="majorcat=home&subcat=homedecor" Case "118" endlink="majorcat=home&subcat=appliances" Case "119" endlink="majorcat=home&subcat=sports" Case "120" endlink="majorcat=home&subcat=houseware" Case "121" endlink="majorcat=home&subcat=houseware" Case "122" endlink="majorcat=grocery&subcat=groceries" Case "123" endlink="majorcat=arts&subcat=paintings" Case "124" endlink="majorcat=arts&subcat=handicrafts" Case "125" endlink="majorcat=arts&subcat=religiousitems" Case "126" endlink="majorcat=arts&subcat=religiousitems" Case "127" endlink="majorcat=fashion&subcat=mens" Case "128" endlink="majorcat=fashion&subcat=womens" Case "129" endlink="majorcat=fashion&subcat=kids" Case "130" endlink="majorcat=fashion&subcat=jewelry" Case "131" endlink="majorcat=fashion&subcat=accessories" Case "132" endlink="majorcat=fashion&subcat=womens" Case "133" endlink="majorcat=services&subcat=gifts" Case "134" endlink="majorcat=services&subcat=events" Case "135" endlink="majorcat=services&subcat=phonecards" Case "136" endlink="majorcat=services&subcat=gifts" Case "137" endlink="majorcat=music&subcat=audiocds" Case "138" endlink="majorcat=music&subcat=audiocds" Case "139" endlink="majorcat=music&subcat=audiocds" Case "140" endlink="majorcat=music&subcat=audiocds" Case "141" endlink="majorcat=music&subcat=audiocds" end select End Function '********************************************************************************** '* Gathers all information for a specific Item id Function GenerateContent(contentitem) 'for eshakti fashion - promoting eshakti items in fashion page - Mani contentitem=trim(contentitem) if len(cstr(contentitem))>7 then tablename="vwUeshaktifashion" set con = Server.CreateObject ("adodb.connection") con.Open strcon set content1 = Server.CreateObject ("adodb.recordset") set content1 = con.execute("select item_id,cy_list_price,name,description,thumbpicture,picture from " & tablename & " where item_id = " & contentitem & " " ) if content1.eof then Response.Write("Item ID " & contentitem & " does not exist in Product_table/" & tablename) else imagelocation="http://www.eshakti.com/clothimages/" description=content1("description") item_id=content1("item_id") picture=content1("picture") price=content1("cy_list_price") 'compareprice=content1("compare_price") name=content1("name") categorydetail="fashionpd.asp" thumbnail=content1("thumbpicture") if isnull(thumbnail) or thumbnail="" then thumbnail="nopic_thumb.gif" end if set rsEFashion = server.CreateObject("adodb.recordset") set rsEFashion = con.execute("select category from vweshaktifashion where item_id=" & item_id & " ") if not rsEFashion.eof then efCategory = rsEFashion("category") end if rsEFashion.Close end if else set con = Server.CreateObject ("adodb.connection") con.Open strcon set content1 = Server.CreateObject ("adodb.recordset") set content1 = con.execute("select tablename as tablename from product_table where item_id="&contentitem&" ") tablename=content1("tablename") if trim(ucase(tablename))="MUSIC_TABLE" then set con = Server.CreateObject ("adodb.connection") con.Open strcon set content1 = Server.CreateObject ("adodb.recordset") set content1 = con.execute("select product_table.item_id,product_table.PriceUS, product_table.compare_price, product_table.subcat_id, music_table.name, music_table.description, music_table.picture,music_table.thumbpicture from product_table, music_table where music_table.item_id="&contentitem&" and product_table.item_id="&contentitem&" ") if content1.eof then Response.Write("Item ID " & contentitem & " does not exist in Product_table/" & tablename) else set content2 = con.execute("select imagelocation from subcat_table where subcat_id="&content1("subcat_id")&" ") imagelocation=content2("imagelocation") description=content1("description") item_id=content1("item_id") dsubcatid=content1("subcat_id") categorydetail=ucase(tablename) categorydetail=replace(categorydetail,"_TABLE","detail.asp") categorydetail=lcase(categorydetail) headfoot2(dsubcatid) price=content1("priceus") compareprice=content1("compare_price") name=content1("name") set content1 = con.execute("select picture,thumbpicture from music_table where item_id="&contentitem&" ") thumbnail=content1("thumbpicture") picture=content1("picture") if picture="" or isnull(picture) or isnull(content1("picture")) then picture="nopic.gif" end if if (thumbnail="" or isnull(content1("thumbpicture"))) then thumbnail="nopic_thumb.gif" end if end if elseif lcase(tablename)="homespeciality_table" then set con = Server.CreateObject ("adodb.connection") con.Open strcon set content1 = Server.CreateObject ("adodb.recordset") set content1 = con.execute("select product_table.item_id,product_table.PriceUS, product_table.compare_price, product_table.subcat_id,"&tablename&".name,"&tablename&".picture, "&tablename&".description, "&tablename&".thumbpicture,"&tablename&".cmin,"&tablename&".connectionfee,"&tablename&".country,"&tablename&".city, "&tablename&".rounding,"&tablename&".maintainencefee,"&tablename&".totaltalktime from product_table, "&tablename&" where "&tablename&".item_id="&contentitem&" and product_table.item_id="&contentitem&" ") if content1.eof then Response.Write("Item ID " & contentitem & " does not exist in Product_table/" & tablename) else set content2 = con.execute("select imagelocation from subcat_table where subcat_id="&content1("subcat_id")&" ") imagelocation=content2("imagelocation") description=content1("description") item_id=content1("item_id") picture=content1("picture") dsubcatid=content1("subcat_id") headfoot2(dsubcatid) price=content1("priceus") name=content1("name") imagelocation=content2("imagelocation") categorydetail=ucase(tablename) categorydetail=replace(categorydetail,"_TABLE","detail.asp") categorydetail=lcase(categorydetail) totaltalktime=content1("totaltalktime") cmin=content1("cmin") connectionfee=content1("connectionfee") maintainencefee=content1("maintainencefee") country=content1("country") city=content1("city") compareprice=content1("compare_price") rounding=content1("rounding") thumbnail=content1("thumbpicture") if isnull(thumbnail) or thumbnail="" then thumbnail="nopic_thumb.gif" end if end if else set con = Server.CreateObject ("adodb.connection") con.Open strcon set content1 = Server.CreateObject ("adodb.recordset") set content1 = con.execute("select product_table.item_id,product_table.PriceUS, product_table.compare_price, product_table.subcat_id,"&tablename&".name, "&tablename&".description, "&tablename&".thumbpicture,"&tablename&".picture from product_table, "&tablename&" where "&tablename&".item_id="&contentitem&" and product_table.item_id="&contentitem&" ") if content1.eof then Response.Write("Item ID " & contentitem & " does not exist in Product_table/" & tablename) else set content2 = con.execute("select imagelocation from subcat_table where subcat_id="&content1("subcat_id")&" ") imagelocation=content2("imagelocation") description=content1("description") item_id=content1("item_id") picture=content1("picture") dsubcatid=content1("subcat_id") headfoot2(dsubcatid) price=content1("priceus") compareprice=content1("compare_price") name=content1("name") imagelocation=content2("imagelocation") categorydetail=ucase(tablename) categorydetail=replace(categorydetail,"_TABLE","detail.asp") categorydetail=lcase(categorydetail) thumbnail=content1("thumbpicture") if isnull(thumbnail) or thumbnail="" then thumbnail="nopic_thumb.gif" end if 'for eshakti fashion - By Mani if lcase(tablename)="vwueshaktifashion" then set rsEFashion = server.CreateObject("adodb.recordset") set rsEFashion = con.execute("select category from vweshaktifashion where item_id=" & item_id & " ") efCategory = rsEFashion("category") rsEFashion.Close end if end if end if end if content1.close set content2=nothing End Function %> IndiaPlaza JEWELRY!
  
<% if len(trim(session("Customer_id"))) = 0 then %>
sign-in <% else %> MyAccount <% end if %> shopping cart check out email this page Rewards Program Why IP? <% if len(trim(session("Customer_id"))) <> 0 then %> SignOut <% end if %>

RAKHI SPECIAL BOOKS FASHION GIFTS TO INDIA GIFTS TO USA HANDICRAFTS INSURANCE KITCHENWARE MUSIC MOVIES PHONECARDS
BEAUTY CARE CDROMS GROCERIES JEWELRY MAGAZINES SWEETS & SNACKS MUSIC INSTRUMENTS FRESH FLOWERS CITY INFO " style="text-decoration:none">MONEY TRANSFER
JEWELRY WOMEN BEAUTY KIDS FASHION

JEWELRY SEARCH

·GOLD JEWELRY
· 22K EARRINGS

· 22K PENDANTS

· 22K SETS

· VIEW ALL

·SILVER ITEMS
· PAYAL

· POOJA ITEMS

· SILVER COINS

· STATUES

· VIEW ALL SILVER ITEMS

·GOLD PLATED JEWELRY
· BANGLES & KADA

· NECKLACE SET

· VIEW ALL

·COSTUME JEWELRY
· BANGLES

· NECKLACE SET

· VIEW ALL

·OTHER JEWELRY
· ARTIFICIAL JEWELRY

· STONE JEWELRY

·ACCESSORIES
· DESIGNER BINDI

· PERFUME FOR MEN

· PERFUME FOR WOMEN

· PERFUME GIFT SET


<% Response.write("") if session("POPUP")<>"TRUE" then 'Response.write("") Session("POPUP")="TRUE" end if %>



<% Randomize() RandomSize = 2 RandomValue = RandomSize * Rnd() RandomValue = RandomValue RandomInteger = Int(RandomValue) %><% if RandomInteger = 0 then %>
Rakhi is round the corner. And here's an exciting offer on Rakhis
Go ahead, choose your favorite mithai and a designer rakhi.
Each combo will come with a FREE Rakhi Thali and a FREE Rakhi Card.
24K Gold Plated Rakhi with Half Pound Boondi Ladoo Combo
This combo comes with a Free Rakhi Thali and a Rakhi Card.
Om with Flower Rakhi with One Pound Kaju Katli Combo
This combo comes with a Free Rakhi Thali and a Rakhi Card.
Send the very best to your brother!!
<%end if%><% if RandomInteger = 1 then %>
An Awesome Offer for Rakhsa Bandhan!
With every traditional rakhi comes a 5gm silver coin
Also get a rakhi card absolutely free!
Free shipping for orders within the US!

Canada orders are also welcome!
Kalash rakhi with 5 gram Silver Coin and Free Rakhi Card
A tradional golden-brown rakhi with kalash on it. Combine it with 5 grams Silver coin and a Free Rakhi Card!
Threads of Togetherness: Rakhi with 5 gram Silver Coin and Free Rakhi Card
Exquisitely handcrafted, this Rakhi shall truly express your best wishes to your dear brother! Tie this beautiful Rakhi on your brother's wrists and let joy spread!
Send Your Rakhi Now!
<%end if%>
<% Randomize() RandomSize = 5 RandomValue = RandomSize * Rnd() RandomValue = RandomValue RandomInteger = Int(RandomValue) %><% if RandomInteger = 0 then %>
24K GOLD RAKHI!

24 Carat Gold Plated Bal Gopal Rakhi
24 Carat Gold Plated Bal Gopal Rakhi

For That Perfect Ocassion!
PRICE: $12.99

  • 24 Carat Gold Plated Sri Krishna Rakhi
  • 24 Carat Gold Plated Lakshmi Rakhi
  • 24 Carat Gold Plated Hanuman Rakhi
  • 24 Carat Gold Plated Ganesh Rakhi
    More...
    <%end if%><% if RandomInteger = 1 then %>
    24K GOLD RAKHI!

    24 Carat Gold Plated Hanuman Rakhi
    24 Carat Gold Plated Hanuman Rakhi

    For That Perfect Ocassion!
    PRICE: $12.99

  • 24 Carat Gold Plated Bal Gopal Rakhi
  • 24 Carat Gold Plated Ganesh Rakhi
  • 24 Carat Gold Plated Lakshmi Rakhi
  • 24 Carat Gold Plated Sri Krishna Rakhi
    More...
    <%end if%><% if RandomInteger = 2 then %>
    24K GOLD RAKHI!

    24 Carat Gold Plated Sri Krishna Rakhi
    24 Carat Gold Plated Sri Krishna Rakhi

    For That Perfect Ocassion!
    PRICE: $12.99

  • 24 Carat Gold Plated Hanuman Rakhi
  • 24 Carat Gold Plated Bal Gopal Rakhi
  • 24 Carat Gold Plated Ganesh Rakhi
  • 24 Carat Gold Plated Lakshmi Rakhi
    More...
    <%end if%><% if RandomInteger = 3 then %>
    24K GOLD RAKHI!

    24 Carat Gold Plated Lakshmi Rakhi
    24 Carat Gold Plated Lakshmi Rakhi

    For That Perfect Ocassion!
    PRICE: $12.99

  • 24 Carat Gold Plated Ganesh Rakhi
  • 24 Carat Gold Plated Sri Krishna Rakhi
  • 24 Carat Gold Plated Bal Gopal Rakhi
  • 24 Carat Gold Plated Hanuman Rakhi
    More...
    <%end if%><% if RandomInteger = 4 then %>
    24K GOLD RAKHI!

    24 Carat Gold Plated Ganesh Rakhi
    24 Carat Gold Plated Ganesh Rakhi

    For That Perfect Ocassion!
    PRICE: $12.99

  • 24 Carat Gold Plated Lakshmi Rakhi
  • 24 Carat Gold Plated Bal Gopal Rakhi
  • 24 Carat Gold Plated Hanuman Rakhi
  • 24 Carat Gold Plated Sri Krishna Rakhi
    More...
    <%end if%>
    <% Randomize() RandomSize = 5 RandomValue = RandomSize * Rnd() RandomValue = RandomValue RandomInteger = Int(RandomValue) %><% if RandomInteger = 0 then %>
    RAKHI PENDANTS FOR BROTHER

    22KT Gold Om Pendant
    22KT Gold Om Pendant

    22K Gold Pendant for Auspicious Event!!
    PRICE: $44

  • 22KT Gold Shreenathji Pendant
  • 22KT Gold Ganesha Pendant
  • 22KT Gold Om Pendant
  • 22KT Gold Sai Baba Pendant
    More...
    <%end if%><% if RandomInteger = 1 then %>
    RAKHI PENDANTS FOR BROTHER

    22KT Gold Om Pendant
    22KT Gold Om Pendant

    22K Gold Pendant for Auspicious Event!!
    PRICE: $68

  • 22KT Gold Om Pendant
  • 22KT Gold Sai Baba Pendant
  • 22KT Gold Ganesha Pendant
  • 22KT Gold Shreenathji Pendant
    More...
    <%end if%><% if RandomInteger = 2 then %>
    RAKHI PENDANTS FOR BROTHER

    22KT Gold Shreenathji Pendant
    22KT Gold Shreenathji Pendant

    22K Gold Pendant for Auspicious Event!!
    PRICE: $72

  • 22KT Gold Om Pendant
  • 22KT Gold Om Pendant
  • 22KT Gold Sai Baba Pendant
  • 22KT Gold Ganesha Pendant
    More...
    <%end if%><% if RandomInteger = 3 then %>
    RAKHI PENDANTS FOR BROTHER

    22KT Gold Ganesha Pendant
    22KT Gold Ganesha Pendant

    22K Gold Pendant for Auspicious Event!!
    PRICE: $92

  • 22KT Gold Sai Baba Pendant
  • 22KT Gold Shreenathji Pendant
  • 22KT Gold Om Pendant
  • 22KT Gold Om Pendant
    More...
    <%end if%><% if RandomInteger = 4 then %>
    RAKHI PENDANTS FOR BROTHER

    22KT Gold Sai Baba Pendant
    22KT Gold Sai Baba Pendant

    22K Gold Pendant for Auspicious Event!!
    PRICE: $96

  • 22KT Gold Ganesha Pendant
  • 22KT Gold Om Pendant
  • 22KT Gold Om Pendant
  • 22KT Gold Shreenathji Pendant
    More...
    <%end if%>
    <% Randomize() RandomSize = 5 RandomValue = RandomSize * Rnd() RandomValue = RandomValue RandomInteger = Int(RandomValue) %><% if RandomInteger = 0 then %>
    RAKHI RETURN GIFTS FOR SISTERS

    Gold Earrings
    Gold Earrings

    For Sister, With Love!
    PRICE: $41.99

  • Gold Earrings
  • 22KT Gold Earrings
  • Gold Earrings
  • 22KT Gold Earrings
    More...
    <%end if%><% if RandomInteger = 1 then %>
    RAKHI RETURN GIFTS FOR SISTERS

    Gold Earrings
    Gold Earrings

    For Sister, With Love!
    PRICE: $47.99

  • Gold Earrings
  • 22KT Gold Earrings
  • 22KT Gold Earrings
  • Gold Earrings
    More...
    <%end if%><% if RandomInteger = 2 then %>
    RAKHI RETURN GIFTS FOR SISTERS

    Gold Earrings
    Gold Earrings

    For Sister, With Love!
    PRICE: $68.99

  • Gold Earrings
  • Gold Earrings
  • 22KT Gold Earrings
  • 22KT Gold Earrings
    More...
    <%end if%><% if RandomInteger = 3 then %>
    RAKHI RETURN GIFTS FOR SISTERS

    22KT Gold Earrings
    22KT Gold Earrings

    For Sister, With Love!
    PRICE: $114.49

  • 22KT Gold Earrings
  • Gold Earrings
  • Gold Earrings
  • Gold Earrings
    More...
    <%end if%><% if RandomInteger = 4 then %>
    RAKHI RETURN GIFTS FOR SISTERS

    22KT Gold Earrings
    22KT Gold Earrings

    For Sister, With Love!
    PRICE: $182.99

  • 22KT Gold Earrings
  • Gold Earrings
  • Gold Earrings
  • Gold Earrings
    More...
    <%end if%>
    <% Randomize() RandomSize = 5 RandomValue = RandomSize * Rnd() RandomValue = RandomValue RandomInteger = Int(RandomValue) %><% if RandomInteger = 0 then %>
    SILVER POOJA ITEMS

    Silver Statue
    Silver Statue

    A Perfect Rakhi Gift!
    PRICE: $74.99

  • Silver Aagarbati Stand
  • Silver Aarti Set
  • Silver Aagarbati Stand
  • Silver Candle Stand
    More...
    <%end if%><% if RandomInteger = 1 then %>
    SILVER POOJA ITEMS