<% 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 %> <%response.redirect "/sf.aspx" %> IndiaPlaza GIFTS TO THE US!
  
<% 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
GIFTS TO THE US  


·RAKHI SPECIAL
· 24K GOLD RAKHI

· MAKE YOUR OWN COMBO

· PEARL RAKHIS

· RAJBHOG RAKHI SPECIAL

· RAKHI THALI

· RAKHI WITH 10 GRAM SILVER COIN

· RAKHI WITH 5 GRAM SILVER COIN

· RAKHI WITH HALF POUND SWEETS

· SILVER RAKHI

· TRADITIONAL RAKHIS

· VIEW ALL

·RAKHI WORLDWIDE DELIVERY
· ETHNIC RAKHI

· PEARL RAKHI

· RAKHI THALI

· RAKHI TO UK

· VIEW ALL

·HOLIDAY SPECIAL
· DECORATIVES

· GIFT HAMPERS

·FAVORITES
· ARTIFICIAL FLOWERS

· FRESH FLOWERS

· SOFT TOYS

·FOR MEN
· JEWELRY

· PERFUMES

·FOR WOMEN
· ACCESSORIES

· APPLIANCES

· FASHION

· HANDBAGS

· JEWELRY

· JEWELRY - ARTIFICIAL

· JEWELRY - OXIDIZED

· LOVE KEYCHAINS

· PERFUMES

· SHAHNAZ PRODUCTS

·FOR KIDS
· BABY TOYS

· BOOKS

· CDROMS

· ETHNIC WEAR

· MYTHOLOGY SETS

·SWEETS AND SNACKS
· CLANITA

· IP SPECIAL

· RAJ BHOG

· SURATI FARSAN

·INDIAN CURIOS
· HANDICRAFTS

· PAINTINGS

· RAJASTHANI DECOR

·GIFT CERTIFICATES
· IP GIFT CERTIFICATES


<% 'Response.write("") %> <% 'if request.querystring("flash")<>"NO" then 'if RandomInteger = 0 then %> <% 'elseif RandomInteger = 1 then %> <% 'else %> <% 'end if 'end if %>

<% Randomize() RandomSize = 2 RandomValue = RandomSize * Rnd() RandomValue = RandomValue RandomInteger = Int(RandomValue) %><% if RandomInteger = 0 then %>
Great range of 22 K Jewelry -
From Bracelets to chains, earrings, pendants, sets & More!!
Gold Earrings
22KT Gold Earrings to dress you up. Makes a perfect Gift as well. Weight: 2.3 grams

Gold Ganesha Pendant
22KT Gold Ganesha Pendant right at your door step. Weight: 1.5 grams
Get Your Jewelry!
<%end if%><% if RandomInteger = 1 then %>
These intricate pieces of art will adorn your home
for that ethnic look.

From Gem Boxes to trays, from carved wooden Ganeshas to gold Radha Krishnas,
from marble plates to jewelry boxes, we have them all.
Ideal for your home or as a gift that says so much.
Marble Goblet Pair
These marble goblets are decorated with floral designs in golden colours, similar to the designs seen in Mughal paintings. The finely coloured-latticed inlay work on these exclusive marble goblets brings out their Royal style. Enjoy the pleasure of sipping a beverage of your choice from these elegant marble goblets or giving them as a gift to someone you love. Dimensions : 5 X 2.5 X 2.5 Inches Free Shipping for Worldwide Delivery.
Round wooden coasters with Gem Stone Painting and Holder
Round shaped coasters have its border in light natural brown shade of wood with engraved carving. Every coaster boasts of that traditional precious work of art - gem stone painting. Traditional techniques are used in semi-precious stone dust without any use of synthetic or artificial colour. Set of 6 coasters come in a boat shaped wooden coaster holder. While placed in the stand the gem stone painting on the coasters placed in an upright position give that look of ethnic and exclusive decorative piece. Dimensions : 4.75 x 4 x 3.5 Inches Free Shipping for Worldwide Delivery.
BUY NOW!
<%end if%>
<% Randomize() RandomSize = 5 RandomValue = RandomSize * Rnd() RandomValue = RandomValue RandomInteger = Int(RandomValue) %><% if RandomInteger = 0 then %>
SPECIAL GIFTS TO USA!

Gold Plated Bangle
Gold Plated Bangle

Send the Very Best!
PRICE: $79.95

  • Marble Goblet Pair
  • Soap Stone Krishna
  • Silver Ganesh Coin
  • Rajbhog Besan Ladoo
    More...
    <%end if%><% if RandomInteger = 1 then %>
    SPECIAL GIFTS TO USA!

    Silver Ganesh Coin
    Silver Ganesh Coin

    Send the Very Best!
    PRICE: $10.99

  • Gold Plated Bangle
  • Rajbhog Besan Ladoo
  • Soap Stone Krishna
  • Marble Goblet Pair
    More...
    <%end if%><% if RandomInteger = 2 then %>
    SPECIAL GIFTS TO USA!

    Marble Goblet Pair
    Marble Goblet Pair

    Send the Very Best!
    PRICE: $81.99

  • Silver Ganesh Coin
  • Gold Plated Bangle
  • Rajbhog Besan Ladoo
  • Soap Stone Krishna
    More...
    <%end if%><% if RandomInteger = 3 then %>
    SPECIAL GIFTS TO USA!

    Soap Stone Krishna
    Soap Stone Krishna

    Send the Very Best!
    PRICE: $55.49

  • Rajbhog Besan Ladoo
  • Marble Goblet Pair
  • Gold Plated Bangle
  • Silver Ganesh Coin
    More...
    <%end if%><% if RandomInteger = 4 then %>
    SPECIAL GIFTS TO USA!

    Rajbhog Besan Ladoo
    Rajbhog Besan Ladoo

    Send the Very Best!
    PRICE: $17.99

  • Soap Stone Krishna
  • Gold Plated Bangle
  • Silver Ganesh Coin
  • Marble Goblet Pair
    More...
    <%end if%>
    <% Randomize() RandomSize = 5 RandomValue = RandomSize * Rnd() RandomValue = RandomValue RandomInteger = Int(RandomValue) %><% if RandomInteger = 0 then %>
    22K GOLD JEWELRY!

    Gold Earrings
    Gold Earrings

    All That Glitters is Gold!
    PRICE: $41.99

  • 22KT Gold Om Pendant
  • 22KT Gold Shreenathji Pendant w/Meenakari (Enamel)
  • 22KT Gold Om Pendant
  • 22KT Gold Bal Krishna Pendant
    More...
    <%end if%><% if RandomInteger = 1 then %>
    22K GOLD JEWELRY!

    22KT Gold Om Pendant
    22KT Gold Om Pendant

    All That Glitters is Gold!
    PRICE: $44

  • Gold Earrings
  • 22KT Gold Bal Krishna Pendant
  • 22KT Gold Shreenathji Pendant w/Meenakari (Enamel)
  • 22KT Gold Om Pendant
    More...
    <%end if%><% if RandomInteger = 2 then %>
    22K GOLD JEWELRY!

    22KT Gold Om Pendant
    22KT Gold Om Pendant

    All That Glitters is Gold!
    PRICE: $68

  • 22KT Gold Om Pendant
  • Gold Earrings
  • 22KT Gold Bal Krishna Pendant
  • 22KT Gold Shreenathji Pendant w/Meenakari (Enamel)
    More...
    <%end if%><% if RandomInteger = 3 then %>
    22K GOLD JEWELRY!

    22KT Gold Shreenathji Pendant w/Meenakari (Enamel)
    22KT Gold Shreenathji Pendant w/Meenakari (Enamel)

    All That Glitters is Gold!
    PRICE: $100

  • 22KT Gold Bal Krishna Pendant
  • 22KT Gold Om Pendant
  • Gold Earrings
  • 22KT Gold Om Pendant
    More...
    <%end if%><% if RandomInteger = 4 then %>
    22K GOLD JEWELRY!

    22KT Gold Bal Krishna Pendant
    22KT Gold Bal Krishna Pendant

    All That Glitters is Gold!
    PRICE: $112

  • 22KT Gold Shreenathji Pendant w/Meenakari (Enamel)
  • Gold Earrings
  • 22KT Gold Om Pendant
  • 22KT Gold Om Pendant
    More...
    <%end if%>
    <% Randomize() RandomSize = 5 RandomValue = RandomSize * Rnd() RandomValue = RandomValue RandomInteger = Int(RandomValue) %><% if RandomInteger = 0 then %>
    BRASS STATUES!

    Brass Aum
    Brass Aum

    Perfect for Any Home!
    PRICE: $26.99

  • Brass Ganesha
  • Brass Nataraja
  • Brass Durga
  • Brass Hanuman
    More...
    <%end if%><% if RandomInteger = 1 then %>
    BRASS STATUES!

    Brass Durga
    Brass Durga

    Perfect for Any Home!
    PRICE: $46.99

  • Brass Aum
  • Brass Hanuman
  • Brass Nataraja
  • Brass Ganesha
    More...
    <%end if%><% if RandomInteger = 2 then %>
    BRASS STATUES!

    Brass Ganesha
    Brass Ganesha

    Perfect for Any Home!
    PRICE: $51.99

  • Brass Durga
  • Brass Aum
  • Brass Hanuman
  • Brass Nataraja
    More...
    <%end if%><% if RandomInteger = 3 then %>
    BRASS STATUES!

    Brass Nataraja
    Brass Nataraja

    Perfect for Any Home!
    PRICE: $61.99

  • Brass Hanuman
  • Brass Ganesha
  • Brass Aum
  • Brass Durga
    More...
    <%end if%><% if RandomInteger = 4 then %>
    BRASS STATUES!