Scoop -- the swiss army chainsaw of content management
Front Page · Everything · News · Code · Help! · Wishlist · Project · Scoop Sites · Dev Notes · Latest CVS changes · Development Activities
Scoop Ad Server Feature Requests
By hurstdog , Section Project []
Posted on Mon Sep 24, 2001 at 12:00:00 PM PST
Below is a quick write-up about a possible scoop ad server. Please read it, and let me know what you think. If there is anything you would like, let me know. Anything you don't, let me know.

Purpose
Right now scoop is a pretty complete system. Users can setup and run sites with (relative) ease. But if a user wants to sell ads from their scoop site, they have to custom code a system for accepting ads, choosing which to display, and keeping track of how many times each was displayed. This ad system would be built into scoop, and take care of all of that for the user.

Description/feature list

Ad Submission

There should be an easy way for potential advertisers to get their ads on a given scoop site. A page would be set up to take all of the necessary information for a given ad. Most likely split up into 2 pages, where in the first page, they would give contract name, email, phone, snail mail address, business name. On the second page they could upload the ad, any related code to go with it (javascript, java, flash, whatever) and submit the ad. Maybe not allow them to get to the second page w/out a valid email. Perhaps a user account on the site, tagged 'advertisor' that will add a link to a stats page about their submitted ads?

The site administrator would be able to set what type of ads to allow, as well as the messages to give to the potential advertisors. If you only allow gif/png/tiff/jpg ads, then only allow them an upload link. If you allow javascript, give them room for N chars in javascript (settable in a var), if you allow java as well, give them an upload link for the .java file. flash, for the .swf file, etc.

There will be a field for a url for the ad to link to, as well.

Advertisors should be able to submit as many ads as they want. They will get a short description detailing the pricing of ads on the site (set in a var :)

Also, it will tie into the redhat credit card verification system. http://www.redhat.com/software/ecommerce/ccvs/ to take the credit cards and payments. (opinions on how to bill? Through cron? by hand?)

Ad Display

Boxes will be used to display ads. Perhaps a syntax like the following: |BOX,ad_box,<banner or box>[,optionalAdvertisorID]| the optionalAdvertisorID would be for perpetual ads, like the case of the VA hosting logo on kuro5hin.org. There might be a need for other arguments as well, to that box, but that will be dealt with later.

Ads will be displayed in a round-robin fashion. They will be marked with the last time displayed, and the one with the oldest last time displayed, of a given type (banner or box), will be shown.

Ad Administration
  • Approval

    Ads will not start displaying on the site until a site administrator approves the ad. The administrator will be able to preview the ad, without running any of the code, or with running all of the associated code, at the admin's discretion.

  • Listings

    The administrator will have a list, similar to the Story List and Poll List, that will show each ad's ad id, the submitting business, a link to a preview page, the number of times its been shown, and a link to detailed information about it. Also a checkbox beside it, to enable or disable the ad (similar to the rdf admin tool). The ad info row will show up in a different color if the ad is pending.

    Admins will be able to sort ads by most shown, by ad id, by contact/business name, or by least shown.

  • Ad Detail

    In the ad detail page, admins will see all of the info in the listing for that ad, as well as CPM (cost per mil), estimated amount they owe, and links to other ads by the same business/contact.

    There will also be a small form, where the administrator can generate either an html or text report, of the amount of ads shown, and the cost to the advertiser for any date range given. Scoop will keep track of how much you've billed each advertisor, when, etc. Also will be able to give a summary of past billings, on a per month basis (i.e. Jan, 45000 impressions, $10000000 charged)

  • Variables

    Admistrators should be able to set:

    • The type of ads allowed to be submitted (java/flash/javascript/gif/etc)
    • Number of ads per advertisor
    • Max size of ad images
    • CPM
    • Allowed types to submit (banner, box, etc)
    • any others suggested

Details
Storage

Ads images will be stored in a specified place on the hard drive, similar to caching. Ad code will be stored in the database.

Caching

Ad id's and last view might have to be cached, or stored in a circular array, so as to alleviate strain on the database for each page view.

Anything else?

So what do you think? I welcome all input, please tell me what you like and don't like. What seems feasible or not. Features that you would like, and stuff that isn't necessary.

-Andrew

< ids.org.au and anime.org.au | Usability guff: label tags for poll options >

Menu
· create account
· faq
· search
· report bugs
· Scoop Administrators Guide
· Scoop Box Exchange

Login
Make a new account
Username:
Password:

Related Links
· Scoop
· Kuro5hin
· More on Feature Requests
· Also by hurstdog

Story Views
  321 Scoop users have viewed this story.

Display: Sort:
Scoop Ad Server | 177 comments (177 topical, 0 hidden)
"What seems feasible or not"? (1.00 / 1) (#1)
by cp on Mon Sep 24, 2001 at 08:35:35 PM PST

i.e. Jan, 45000 impressions, $10000000 charged
I'd say: not.



AdBusterBusters (3.00 / 1) (#2)
by sleeper22 on Thu Sep 27, 2001 at 03:04:01 AM PST

Your design looks great. A couple ideas...

AD TEMPLATES
We'll want to support various types of ads, such as banner or box (maybe 'square' is better since box has other meaning), each of which has characteristics of dimension, etc.

How about using blocks for this? One per ad type, like templates, so your box call would become |BOX,ad_box,<blockid>[,optionalAdvertisorID]|

blocks could be like

  • ad_square:
    <a href="|rootdir|/?op=ad;serve=|AD_ID|;url=|AD_URL|" onMouseOver="window.status='go to |AD_URL|'"><img src="|AD_SRC" height="300" width="300" alt="|AD_LINE1" border="0"/></a>

  • ad_banner_short:
    <a href="|rootdir|/?op=ad;serve=|AD_ID|;url=|AD_URL|" onMouseOver="window.status='go to |AD_URL|'"><img src="|AD_SRC" height="300" width="500" alt="|AD_LINE1" border="0"/></a>

  • ad_banner_unlimited:
    <a href="|rootdir|/?op=ad;serve=|AD_ID|;url=|AD_URL|" onMouseOver="window.status='go to |AD_URL|'"><img src="|AD_SRC" alt="|AD_LINE1" border="0"/></a>

  • ad_text:
    <table width="200" border="0" bgcolor="cccccc"><tr><td>
    <a href="|rootdir|/?op=ad;serve=|AD_ID|;url=|AD_URL|" onMouseOver="window.status='go to |AD_URL|'">|AD_TITLE|</a><br />
    |AD_LINE1|<br />
    |AD_LINE2|<br />
    </td></tr></table>

the fields used above are

  • id (since a URL can be used in >1 ad)
  • url
  • src (not used by text-only ads)
  • line1
  • line2 (possibly not used by image-only ads)

google appears to use

  • title (25 chars)
  • line1 and line2 (35 chars)
  • homepage_url (which is printed as text, but may be same as ad url)

Notice that you can also have a more complicated template that involves an image as well as several lines of text. Also, the same ad can potentially be served with multiple templates. For example if an ad is submitted with values for all those fields, then a text-only site viewing mode might serve the text-only version of the ad while the banner would otherwise be served.

If we want allow charging different prices for square versus banner, etc, there could be a tag in the template <meta cpm="200"/>. Then the ad_box would add this cpm value to the URL query string (the clicker needs to pass through scoop for a redirect before leaving the site anyway, to record the click --right?).

Of course another way to maintain meta data about the ad template would be to just pass the template name, and to keep it all together in a table, like a block that says
ad_square:cpm=200;
ad_banner:cpm=100;

APPROVAL
I like the idea of requiring ad submitters to log in as a user. We can then make a group right for submitting ads. An admin (who shouldn't have to personally preview ads) can choose various approaches, most sensibly:

  • Only certain users can submit ads, and they don't require approval. This would mean a VAR ad_approval_on = true, and a group right for the ad submitters. This approach sounds appropriate for sites that are only showing ads from a certain source, like intrasite ads (eg "have you taken our survey?").
  • Anyone can submit ads (tho they should be registered, to get authorization to view stats). However (unless maybe it's a really liberal porn site) ads must be approved by a user with the ad approval right before entering the queue.

For scalability, billing shouldn't be done by the admin either -- but by cron with the help of someone in the 'billing' group! :)
--
babelguides.com <<world literature in translation>>



The design looks good... a few other ideas (none / 0) (#6)
by hillct on Sun Nov 11, 2001 at 10:18:50 AM PST

I was thinking about what it takes to implement a robust full-functioning ad server that goes beyong the scope of scoop sites. I'm not sure if that's the goal here or not but here are a few ideas that would fall into that category:

The ad templates mentioned by an earlier poster are a good way to represent ads on the (advertiser) front end but there are basically two (maybe three) ways ads must be represented on the backend. First, as and image/link combination (simple case), and generic text (for the case of most templates).

Each backend representation needs to be handled differently, for example, the first case requires a simple click-thru recording mechanism and that's about it. The second case requires that each anchor within the text submitted by the advertiser be modified to include a pass-thru link for click-thru recording in order to facilitate CPC advertizing.

On the front end each of these backend representations can be served using three techniques: SSI (as in page pre-processing, which of course will generally be used on all scoop sites), Javascript, and IFRAMEs.

In addition, the first case of backend representations (basic link/image) there is an additional front-end representation that is simply a combination of an anchor and image tag.

Again I'm not sure if this is the direction you want to take the ad engine but it seems to me that it wouldn't be a substancial increase in the codebase and it would allow the ad engine to operate independantly of the larger scoop engine.

--CTH



--
ScoopHost.com - Premier Scoop Hosting and custom development from the lead developers.


scoop is cool (none / 0) (#8)
by tiny on Wed Feb 04, 2009 at 01:55:07 AM PST

scoop is cool, free essential software



jhonwattson (none / 0) (#9)
by alikhan on Wed May 04, 2016 at 08:43:46 AM PST

It's appropriate time to make some plans for the future and it is time to be happy. I have read this post and if I could I wish to suggest you few interesting things or advice. Perhaps you could write next articles referring to this article. I desire to read even more things about it! best website design companies



jhonwattson (none / 0) (#10)
by alikhan on Thu May 05, 2016 at 01:29:46 PM PST

Effectively, this specific acquired us contemplating any alternative exercises are generally beneficial to those people individuals whom come across our self while travelling as well as get minimal tools possibilities. http://bevhillsmdreviews.co



Wimpernverlängerung Berlin, Wimpernverdichtung, Su (none / 0) (#11)
by michealjohn on Sat May 07, 2016 at 10:10:11 AM PST

It is especially decent, though look into the tips during this home address. sugaring



Watch Latest Pakistani Talk Shows and Dramas Onlin (none / 0) (#12)
by michealjohn on Sun May 08, 2016 at 03:28:38 AM PST

It is quite beneficial, although think about the facts when it reaches this target. Pakistani Current Affairs



Jual Laptop Notebook PC HP Lenovo Printer Tinta To (none / 0) (#13)
by davidqq on Sun May 08, 2016 at 05:19:51 AM PST

Checking any blog may make others just want to come up with a greater number of. I did a fabulous which i was first lovely content by means of. The software most likely conducted for the tier still it's exceptional. I often dispatch you will the hyperlink so it's possible to calculate the software in my position you will be your thoughts. Jual PC HP



jhonwattson (none / 0) (#14)
by alikhan on Sun May 08, 2016 at 06:55:24 AM PST

I have to search sites with relevant information on given topic and provide them to teacher our opinion and the article. does vitapulse work



jhonwattson (none / 0) (#15)
by alikhan on Sun May 08, 2016 at 10:24:35 AM PST

 This looks absolutely perfect. All these tiny details are made with lot of background knowledge. I like it a lot nucific reviews



jhonwattson (none / 0) (#16)
by alikhan on Sun May 08, 2016 at 05:36:33 PM PST

I really enjoy simply reading all of your weblogs. Cogniflex reviews



Clark Superior Inc. (none / 0) (#17)
by michealjohn on Mon May 09, 2016 at 06:18:06 AM PST

This is very interesting, but it is necessary to click on this link: conroe Home builders



colling (none / 0) (#18)
by Damaris12 on Mon May 09, 2016 at 09:02:24 AM PST

I definitely enjoying every little bit of it. It is a great website and nice share. I want to thank you. Good job! You guys do a great blog, and have some great contents. Keep up the good work. งานรายได้เสริม



Georgia (none / 0) (#19)
by Damaris12 on Mon May 09, 2016 at 10:36:48 AM PST

The primary a few months of my site there were no remarks; simply provide for it time; now they come in like insane consistently! Much obliged.
アイキャッチ画像作成




jhonwattson (none / 0) (#20)
by alikhan on Mon May 09, 2016 at 11:46:22 AM PST

I truly appreciate merely reading through all your blogs. pure derma face serum



Georgia (none / 0) (#21)
by Damaris12 on Tue May 10, 2016 at 03:06:16 AM PST

Always so interesting to visit your site.What a great info, thank you for sharing. this will help me so much in my learning... WEBデータ収集



jhonwattson (none / 0) (#22)
by alikhan on Tue May 10, 2016 at 05:34:31 AM PST

 This looks absolutely perfect. All these tiny details are made with lot of background knowledge. I like it a lot purathrive turmeric reviews



jhonwattson (none / 0) (#23)
by alikhan on Tue May 10, 2016 at 08:27:37 AM PST

Thought about have fun with simply just perusing your personal sites. probiotic america



Georgia (none / 0) (#24)
by Damaris12 on Wed May 11, 2016 at 03:30:52 AM PST

You have raised an important issue..Thanks for sharing..I would like to read more current affairs from this blog..keep posting..happy birthday wishes for a friend



jhonwattson (none / 0) (#25)
by alikhan on Thu May 12, 2016 at 04:33:37 AM PST

Prefer experience quickly checking all of the websites. erect on demand review



jhonwattson (none / 0) (#26)
by alikhan on Thu May 12, 2016 at 08:54:24 AM PST

If you are afflicted with bouts with anxiety, you can feel safe that your aspire to use herbal plants for panic treatment would not mean that you will be required to drive around inside an old lorry with like beads hanging with the mirror. Herbal plants for panic have vanished mainstream with thanks, get abs after 40



Garcias Garbage Removal (none / 0) (#27)
by julianamartin on Thu May 12, 2016 at 02:13:49 PM PST

Your texts on this subject are correct, see how I wrote garbage pickup apex nc this site is really very good.



great (none / 0) (#28)
by rozirose124 on Sat May 14, 2016 at 06:48:50 PM PST

I should assert barely that its astounding! The blog is informational also always fabricate amazing entitys. Obsession Phrases Review



jhonwattson (none / 0) (#29)
by alikhan on Sun May 15, 2016 at 05:08:37 AM PST

Thought about have fun with simply just perusing your personal sites. her yoga secrets



jhonwattson (none / 0) (#30)
by alikhan on Sun May 15, 2016 at 05:09:00 AM PST

Thought about have fun with simply just perusing your personal sites. her yoga secrets



Party Speakers (none / 0) (#32)
by julianamartin on Tue May 17, 2016 at 10:37:00 AM PST

i have used scoop too, it was a very handy too especially for Party Speakers. but i don't know a lot of coding so i couldn't set up the add. or a template. but you article really helped.



David (none / 0) (#33)
by davidqq on Wed May 18, 2016 at 06:39:37 AM PST

There are plenty of dissertation online websites from the internet reside pick up unsurprisingly known in the websites. click here



David (none / 0) (#34)
by davidqq on Thu May 19, 2016 at 11:27:16 AM PST

Well, this got me thinking what other workouts are good for those of us who find ourselves on the road or have limited equipment options. UK Dissertation writing service



BlackMen (none / 0) (#35)
by BlackMen on Sat May 21, 2016 at 06:31:21 AM PST

give them an upload link for the .java file. flash, for the .swf file, etc.cccam server



jhonwattson (none / 0) (#36)
by alikhan on Tue May 24, 2016 at 05:34:16 AM PST

You might be a single extremely trustworthy website article writer. After all, generally, people reveal concerns as well as the details they feature just isn't since sensible. An individual alternatively; whatever you point out pencils out there. The advice regarding the usage of as an example has been the most effective. This web site is perfect! bathroom remodeling cost



"ICE9 Technology Review" (none / 0) (#37)
by julianamartin on Tue May 24, 2016 at 07:09:19 AM PST

On my website you'll see similar texts, write what you think. ICE9 Technology Software



SureCall EZ 4G Easy Install Cell Phone Signal Boos (none / 0) (#38)
by julianamartin on Tue May 24, 2016 at 08:35:13 AM PST

As a Newbie, I am permanently exploring online for articles that can be of assistance to me. Thank you SureCall EZ4G



great (none / 0) (#39)
by rozirose124 on Tue May 24, 2016 at 02:55:17 PM PST

I like to recommend exclusively fine plus efficient information and facts, hence notice it: Stock Trader Salary



BlackMen (none / 0) (#40)
by BlackMen1 on Wed May 25, 2016 at 07:13:49 AM PST

There might be a need for other arguments as well, to that box, but that will be dealt with later.atlanta life coach



great (none / 0) (#41)
by rozirose124 on Wed May 25, 2016 at 03:57:10 PM PST

I like to recommend exclusively fine plus efficient information and facts, hence notice it: limousines airport



Artemisinin Cure of Cancer - Artemisinin (none / 0) (#42)
by julianamartin on Thu May 26, 2016 at 07:44:42 AM PST

I would recommend simply excellent and also trustworthy details, thus notice: artemisinin



Computer Repair Miami|Iphone Repair Miami|Data Rec (none / 0) (#43)
by julianamartin on Thu May 26, 2016 at 09:54:32 AM PST

First You got a great blog .I will be interested in more similar topics. i see you got really very useful topics , i will be always checking your blog thanks. Miami iPhone repair



jhonwattson (none / 0) (#44)
by alikhan on Sat May 28, 2016 at 09:42:51 AM PST

By means of regards for assisting in web page you've gotten quite really been having. I had produced shied shut off having remarks like info found round today. vitamin d3



great (none / 0) (#45)
by rozirose124 on Sun May 29, 2016 at 03:52:24 AM PST

I read this article. I think You put a lot of effort to create this article. I appreciate your work. davie locksmith, www.ablocksmithauto.com/davie-locksmith.html



great (none / 0) (#46)
by rozirose124 on Sun May 29, 2016 at 07:11:36 AM PST

Profit primarily prime quality items -- you can understand them all within: cable chain



jhonwattson (none / 0) (#47)
by alikhan on Sun May 29, 2016 at 08:55:08 AM PST

Make like plainly analyzing your current blogs. nucific bio x4 reviews



Houston Homes For Sale - Houston Homes For Sale Re (none / 0) (#48)
by julianamartin on Mon May 30, 2016 at 03:34:58 AM PST

Visit Houston Real Estate website for the best Houston Homes For Sale, presented by Houston Broker Nema Ghalamdanchi with 007 Signature Realty Houston, TX. Search over 70,000 residential Houston Real Estate listings for sale in the greater Houston TX area including, Luxury Homes, Single Family Homes, Condos, & Highrises for sale in Houston, Texas. Houston Real Estate and Relocation - Search for a home in the greater Houston area - information on communities, master planned communities, neighborhoods, subdivisions, luxury homes, active adult communities, golf course communities, homes on the water, school district information Houston Real Estate



great (none / 0) (#49)
by rozirose124 on Tue May 31, 2016 at 02:49:06 PM PST

It is somewhat fantastic, and yet check out the advice at this treat. MLS Las Vegas



great (none / 0) (#50)
by rozirose124 on Wed Jun 01, 2016 at 07:44:22 AM PST

You ought to basically fantastic not to mention solid advice, which means notice: 70s Costumes



kavin (none / 0) (#51)
by kavinpaker on Thu Jun 02, 2016 at 09:52:48 AM PST

I can seek web-sites having applicable information on presented subject matter and gives those to educator your judgment along with the document. Love spells in Australia



David (none / 0) (#52)
by davidqq on Sun Jun 05, 2016 at 10:29:43 AM PST

Which i regarded as aside your site considering the fact that Associated with more than noticed a lot of associated with a person's content pieces. cccam server



David (none / 0) (#53)
by davidqq on Mon Jun 06, 2016 at 08:07:27 AM PST

As i considered together your site because May possibly learned a lot of around ones own content articles. hampaiden valkaisu 



BlackMen (none / 0) (#54)
by BlackMen1 on Tue Jun 07, 2016 at 07:29:34 AM PST

The ad info row will show up in a different color if the ad is pending.life coach atlanta



kavin (none / 0) (#55)
by kavinpaker on Thu Jun 09, 2016 at 05:31:34 AM PST

I love all the posts, I really enjoyed, I would like more information about this, because it is very nice., Thanks for sharing. pos download



great (none / 0) (#56)
by rozirose124 on Fri Jun 10, 2016 at 08:19:10 AM PST

I just thought it may be an idea to post incase anyone else was having problems researching but I am a little unsure if I am allowed to put names and addresses on here. renta de sonido



great (none / 0) (#57)
by rozirose124 on Sun Jun 12, 2016 at 05:51:54 AM PST

It's superior, however , check out material at the street address. find local sex partner



BlackMen (none / 0) (#58)
by BlackMen1 on Mon Jun 13, 2016 at 11:46:06 AM PST

with running all of the associated code, at the admin's discretion.San Jose Movers



great (none / 0) (#59)
by rozirose124 on Wed Jun 15, 2016 at 04:35:29 PM PST

This is very significant, and yet necessary towards just click this unique backlink: http://www.rtctraveluk.com/



JAck (none / 0) (#60)
by davidqq on Thu Jun 16, 2016 at 04:04:59 AM PST

I just want to let you know that i just check out your site and I find it very interesting and informative.. maryCrisGayo



JAck (none / 0) (#61)
by davidqq on Thu Jun 16, 2016 at 05:14:45 AM PST

I just want to let you know that i just check out your site and I find it very interesting and informative.. www.plumbertoronto.me



MAxx (none / 0) (#62)
by davidqq on Thu Jun 16, 2016 at 06:01:40 AM PST

I prefer the submit. It really is excellent to find out an individual verbalize from your coronary heart and also quality with this crucial subject matter may be effortlessly witnessed. more details see web site. học bóng rổ



Georgia (none / 0) (#63)
by Damaris12 on Mon Jun 20, 2016 at 03:41:46 AM PST

I personally use just top quality supplies -- you can observe all of them from: Fashion



Georgia (none / 0) (#64)
by Damaris12 on Mon Jun 20, 2016 at 05:14:58 AM PST

This is an excellent post I seen thanks to share it. It is really what I wanted to see hope in future you will continue for sharing such a excellent post. best instant coffee



great (none / 0) (#65)
by rozirose124 on Mon Jun 20, 2016 at 03:36:47 PM PST

Find the best essays on is my friend's profile page. attorneys in West Palm Beach fl



Best SEO Agency (none / 0) (#66)
by Muneer1 on Wed Jun 22, 2016 at 05:57:54 AM PST

Excellent article. Very interesting to read. I really love to read such a nice article. Thanks! keep rocking. Best SEO Agency



great (none / 0) (#67)
by rozirose124 on Wed Jun 22, 2016 at 07:43:49 AM PST

The best article I came across a number of years, write something about it on this page. company career sites



great (none / 0) (#68)
by rozirose124 on Thu Jun 23, 2016 at 11:16:28 AM PST

Gives you the best website address I know there alone you'll find how easy it is. mdtpsychsolutions.com



great (none / 0) (#69)
by rozirose124 on Fri Jun 24, 2016 at 07:26:52 AM PST

Make the most of mainly premium substances - you will find him or her for: Tour du lịch đảo Lý Sơn



great (none / 0) (#70)
by rozirose124 on Fri Jun 24, 2016 at 08:28:08 AM PST

Below you will understand what is important, the idea provides one of the links with an exciting site: girlfriend activation v2 examples



great (none / 0) (#71)
by rozirose124 on Sat Jun 25, 2016 at 06:44:12 AM PST

I use basically superior fabrics : you will discover these products by: Gclub



great (none / 0) (#72)
by rozirose124 on Sat Jun 25, 2016 at 01:29:41 PM PST

There you can download for free, see the first of these data. Make a man fall in Love



Air Discount Services (none / 0) (#73)
by kavinpaker on Sun Jun 26, 2016 at 04:03:50 AM PST

I invite you to the page where see how much we have in common. air conditioning installation Northern Virginia



great (none / 0) (#74)
by rozirose124 on Tue Jun 28, 2016 at 11:11:20 AM PST

I like to recommend exclusively fine plus efficient information and facts, hence notice it: visit our website



BlackMen (none / 0) (#75)
by BlackMen1 on Thu Jun 30, 2016 at 04:14:55 AM PST

Ads will be displayed in a round-robin fashion. personal injury lawyer alpharetta ga



great (none / 0) (#76)
by rozirose124 on Fri Jul 01, 2016 at 07:28:04 AM PST

I came onto your blog while focusing just slightly submits. Nice strategy for next, I will be bookmarking at once seize your complete rises... Lovetraction Lines



jhonwattson (none / 0) (#77)
by alikhan on Tue Jul 12, 2016 at 07:56:53 AM PST

Not long ago i experienced a particular make available for you to do a remarkable on a online site. Spot ? help and advice everybody to have this unique through the best ways potential? mobile notary public austin tx



jhonwattson (none / 0) (#78)
by alikhan on Sat Jul 16, 2016 at 06:34:36 PM PST

Together with thank you for anyone supporting website you might have actually recently been creating. I needed shied away from creating comments since media received about currently. Motorbike Testing Reading



jhonwattson (none / 0) (#79)
by alikhan on Sun Jul 17, 2016 at 06:12:02 AM PST

Awesome content i have to tell you and additionally regards for those knowledge. Certification happens to be a sticky content. Still, 's still the contributing tips of our effort. Document recognize any content and additionally wait for a great deal more. Tyres Reading



great (none / 0) (#80)
by rozirose124 on Fri Jul 22, 2016 at 03:42:38 PM PST

I might suggest solely beneficial in addition to trusted facts, and so find it: china sourcing agent



great (none / 0) (#81)
by rozirose124 on Fri Jul 22, 2016 at 06:25:16 PM PST

On this page, you'll see my profile, please read this information. miramar locksmith



JHON (none / 0) (#82)
by alikhan on Sun Jul 24, 2016 at 04:26:32 AM PST

Looking through a person's blogs and forums would make people prefer to publish progressively more. I did so your we appeared to be really happy by using. Them aren't executed to the place nonetheless it's striking. I'll give you actually the hyperlinks so you're able to look at them to do allow me to explain imagination. najlepsze lokaty



great (none / 0) (#83)
by rozirose124 on Wed Jul 27, 2016 at 04:46:06 PM PST

On that website page, you'll see your description, why not read through this. ppc agency



great (none / 0) (#84)
by rozirose124 on Thu Jul 28, 2016 at 02:24:00 PM PST

This is exciting, nevertheless it is vital for you to visit this specific url: Language of Desires



great (none / 0) (#85)
by rozirose124 on Fri Jul 29, 2016 at 08:27:06 AM PST

I exploit solely premium quality products -- you will observe these individuals on: Nouf Taraman



sa (none / 0) (#86)
by alexkhan on Thu Aug 04, 2016 at 10:34:34 AM PST

Great job for publishing such a beneficial web site. Your web log isn't only useful but it is additionally really creative too. http://www.claif2013.com/derritelo-de-amor-realmente-funciona/



great (none / 0) (#87)
by rozirose124 on Sat Aug 20, 2016 at 06:16:55 PM PST

I invite you to the page where see how much we have in common. ablocksmithauto.com



great (none / 0) (#88)
by rozirose124 on Tue Aug 23, 2016 at 03:01:44 PM PST

Hi there, I discovered your blog per Google bit searching for such kinda educational advise moreover your inform beholds very remarkable for me. claif2013.com/desintegrador-de-grasa-realmente-funciona-mira-esto/



great (none / 0) (#89)
by rozirose124 on Wed Aug 24, 2016 at 05:21:54 AM PST

Beaver says I also have such interest, you can read my profile here: oriental rug cleaning



great (none / 0) (#90)
by rozirose124 on Thu Aug 25, 2016 at 06:01:07 AM PST

I should assert barely that its astounding! The blog is informational also always fabricate amazing entitys. Strikingly. com



great (none / 0) (#91)
by rozirose124 on Fri Aug 26, 2016 at 06:23:00 AM PST

Acknowledges for paper such a beneficial composition, I stumbled beside your blog besides decipher a limited announce. I want your technique of inscription... youtube views



great (none / 0) (#92)
by rozirose124 on Sat Aug 27, 2016 at 04:14:52 PM PST

wow this saintly however ,I love your enter plus nice pics might be part personss negative love being defrent mind total poeple , satta matka



great (none / 0) (#93)
by rozirose124 on Mon Sep 05, 2016 at 04:42:57 PM PST

On this subject internet page, you'll see my best information, be sure to look over this level of detail. buy ebay wishlists



great (none / 0) (#94)
by rozirose124 on Tue Sep 06, 2016 at 10:18:25 AM PST

For many people this is important, so check out my profile: buy reverbnation views



sad (none / 0) (#95)
by alexkhan on Mon Sep 12, 2016 at 02:27:52 AM PST

Wow, this is really interesting reading. I am glad I found this and got to read it. Great job on this content. I like it. leader characteristics



calvin (none / 0) (#96)
by alexkhan on Mon Sep 19, 2016 at 05:31:04 AM PST

I definitely enjoying every little bit of it. It is a great website and nice share. I want to thank you. Good job! You guys do a great blog, and have some great contents. Keep up the good work. painful intercourse for women



sa (none / 0) (#97)
by alexkhan on Wed Sep 21, 2016 at 05:29:07 AM PST

Thanks for taking the time to discuss this, I feel strongly that love and read more on this topic. If possible, such as gain knowledge, would you mind updating your blog with additional information? It is very useful for me. quotes about procrastination



calvin (none / 0) (#98)
by alexkhan on Sun Oct 16, 2016 at 04:22:56 AM PST

The website is looking bit flashy and it catches the visitors eyes. Design is pretty simple and a good user friendly interface. wilan



Sean Martin (none / 0) (#100)
by davidqq on Mon Mar 26, 2018 at 03:38:03 AM PST

An excellent situation is actually that one: you are operating 12 hr times as well as performing excellent inside your regions of obligation. Your company companion why not look here, as well as great pal, possibly isn't because difficult operating so that as encouraged when you are and thus bitterness starts to construct.



Excellent read, (none / 0) (#101)
by Faheem on Mon Mar 26, 2018 at 09:19:57 AM PST

In this article understand the most important thing, the item will give you a keyword rich link a great useful website page: Fort Lauderdale Title Loans



james jack (none / 0) (#102)
by pioneerseo on Thu Apr 05, 2018 at 03:08:23 AM PST

In this case you will begin it is important, it again produces a web site a strong significant internet site: 123movies



james jack (none / 0) (#103)
by pioneerseo on Sat Apr 07, 2018 at 07:41:54 AM PST

On my website you'll see similar texts, write what you think. 카지노



ashly doll (none / 0) (#105)
by ashlydoll on Thu Apr 12, 2018 at 12:26:33 AM PST

This is helpful, nonetheless it can be crucial so that you can check out the following website: ancheer electric bike



ashly doll (none / 0) (#106)
by ashlydoll on Fri Apr 13, 2018 at 05:19:27 AM PST

This is helpful, nonetheless it can be crucial so that you can check out the following website: jasa bersih rumah bandung



ashly doll (none / 0) (#107)
by ashlydoll on Sat Apr 21, 2018 at 06:06:14 AM PST

It is especially decent, though look into the tips during this home address. Google Bewertungen kaufen



ashly doll (none / 0) (#108)
by ashlydoll on Sun Apr 22, 2018 at 05:39:12 AM PST

So it is interesting and very good written and see what they think about other people. Stream Tv



For many people (none / 0) (#109)
by Faheem on Fri Apr 27, 2018 at 06:08:43 AM PST

For many people this is the best solution here see how to do it. Immobilienmakler Mallorca



This is very interesting content! (none / 0) (#110)
by Faheem on Mon Apr 30, 2018 at 11:28:16 PM PST

This is very interesting content! I have thoroughly enjoyed reading your points and have come to the conclusion that you are right about many of them. You are great. Test Bank for Psychology in Everyday Life 3rd Edition by Myers



james jack (none / 0) (#111)
by jamesjack on Tue May 01, 2018 at 05:47:47 AM PST

I encourage you to read this text it is fun described ... gucci



ashly doll (none / 0) (#112)
by ashlydoll on Thu May 03, 2018 at 08:19:53 AM PST

This is very useful, although it will be important to help simply click that web page link: Zahnimplantate Berlin



ashly doll (none / 0) (#113)
by ashlydoll on Sun May 06, 2018 at 05:52:08 AM PST

This is very useful, although it will be important to help simply click that web page link: Orthayu



great (none / 0) (#114)
by rozirose124 on Mon May 21, 2018 at 02:46:56 AM PST

Your blogs further more each else volume is so entertaining further serviceable It appoints me befall retreat encore. I will instantly grab your rss feed to stay informed of any updates. seo company



great (none / 0) (#115)
by rozirose124 on Mon May 21, 2018 at 02:48:01 AM PST

You possess lifted an essential offspring..Blesss for using..I would want to study better latest transactions from this blog..preserve posting.. trade schools in houston



great (none / 0) (#116)
by rozirose124 on Mon May 21, 2018 at 02:49:09 AM PST

Thanks for writing such a good article, I stumbled onto your blog and read a few post. I like your style of writing... mercedes benz houston



great (none / 0) (#117)
by rozirose124 on Mon May 21, 2018 at 02:50:08 AM PST

I invite you to the page where see how much we have in common. trade school



great (none / 0) (#118)
by rozirose124 on Mon May 21, 2018 at 02:54:04 AM PST

On this page, you'll see my profile, please read this information. used cars houston



great (none / 0) (#119)
by rozirose124 on Mon May 21, 2018 at 02:57:49 AM PST

Cool you write, the information is very good and interesting, I'll give you a link to my site. career aptitude test



great (none / 0) (#120)
by rozirose124 on Mon May 21, 2018 at 03:00:58 AM PST

Welcome to the party of my life here you will learn everything about me. jobs in dallas texas



Muhammad Siddiq (none / 0) (#121)
by Muhammad Siddiq on Thu Jan 24, 2019 at 08:53:33 AM PST

It is fine, nonetheless evaluate the information and facts around this correct. windshield repair el paso tx



Muhammad Siddiq (none / 0) (#122)
by Muhammad Siddiq on Fri Jan 25, 2019 at 07:51:33 AM PST

The best article I came across a number of years, write something about it on this page. training and development courses singapore



Muhammad Siddiq (none / 0) (#123)
by Muhammad Siddiq on Wed Jan 30, 2019 at 11:51:31 PM PST

These you will then see the most important thing, the application provides you a website a powerful important internet page: Take my online class



Muhammad Siddiq (none / 0) (#124)
by Muhammad Siddiq on Mon Feb 04, 2019 at 12:09:55 AM PST

This is exciting, nevertheless it is vital for you to visit this specific url: NFL super bowl live



seomaster (none / 0) (#125)
by Muhammad Siddiq on Sat May 11, 2019 at 07:45:35 PM PST

It's superior, however , check out material at the street address. onpage seo audit



seomaster (none / 0) (#126)
by Muhammad Siddiq on Wed May 22, 2019 at 03:41:20 AM PST

it's really nice and meanful. it's really cool blog. Linking is very useful thing.you have really helped lots of people who visit blog and provide them usefull information. buy pure cbd oil



ashlydol (none / 0) (#127)
by Muhammad Siddiq on Tue Jun 11, 2019 at 03:39:49 PM PST

Interestingly you write, I will address you'll find exciting and interesting things on similar topics. blickdichte gardinen



ashlydol (none / 0) (#128)
by Muhammad Siddiq on Fri Jul 19, 2019 at 07:04:40 AM PST

This is very useful, although it will be important to help simply click that web page link: Flexform herstofferen



ashlydoll (none / 0) (#129)
by Muhammad Siddiq on Tue Jul 30, 2019 at 10:56:09 PM PST

Very good topic, similar texts are I do not know if they are as good as your work out. psychic toronto ontario



ashlydoll (none / 0) (#130)
by Muhammad Siddiq on Wed Jul 31, 2019 at 03:56:31 AM PST

I invite you to the page where you can read with interesting information on similar topics. verduisterende gordijnen kant en klaar



ashlydoll (none / 0) (#131)
by Muhammad Siddiq on Thu Aug 01, 2019 at 11:04:17 AM PST

I read this article. I think You put a great deal of exertion to make this article. I like your work. نقل اثاث بالدمام



ashlydoll (none / 0) (#132)
by Muhammad Siddiq on Wed Aug 07, 2019 at 08:35:52 PM PST

So lot to occur over your amazing blog. Your blog procures me a fantastic transaction of enjoyable.. Salubrious lot beside the scene. Flexform



ashlydoll (none / 0) (#133)
by Muhammad Siddiq on Sat Aug 10, 2019 at 04:30:16 AM PST

Hi there, I discovered your blog per Google bit searching for such kinda educational advise moreover your inform beholds very remarkable for me. Chumlee Weight Loss



ashlydoll (none / 0) (#134)
by Muhammad Siddiq on Sun Aug 18, 2019 at 05:04:24 AM PST

Initial You got a awesome blog .I determination be involved in plus uniform minutes. i view you got truly very functional matters , i determination be always checking your blog blesss. voyance avenir



ashlydoll (none / 0) (#135)
by Muhammad Siddiq on Thu Aug 22, 2019 at 12:51:01 AM PST

I simply want to tell you that I am new to weblog and definitely liked this blog site. Very likely I'm going to bookmark your blog . You absolutely have wonderful stories. Cheers for sharing with us your blog. Skin Lightening Soap



ashlydoll (none / 0) (#136)
by Muhammad Siddiq on Thu Aug 29, 2019 at 02:16:08 AM PST

Make the most of mainly premium substances - you will find him or her for: Overstock coupon 20% off at Hipmamasplace



ashlydoll (none / 0) (#137)
by Muhammad Siddiq on Fri Aug 30, 2019 at 02:49:01 AM PST

For true fans of this thread I will address is a free online! click for info



ashlydoll (none / 0) (#138)
by Muhammad Siddiq on Wed Sep 04, 2019 at 01:09:14 PM PST

I read this article. I think You put a lot of effort to create this article. I appreciate your work. cpl t20 live



ashlydoll (none / 0) (#139)
by Muhammad Siddiq on Fri Sep 06, 2019 at 08:50:22 AM PST

Gives you the best website address I know there alone you'll find how easy it is. best pet stain remover vacuum



ashlydoll (none / 0) (#140)
by Muhammad Siddiq on Fri Sep 13, 2019 at 05:48:29 AM PST

Hi there, I discovered your blog per Google bit searching for such kinda educational advise moreover your inform beholds very remarkable for me. hong kong news capread



ashlydoll (none / 0) (#141)
by Muhammad Siddiq on Mon Sep 16, 2019 at 06:01:11 AM PST

Thanks for writing such a good article, I stumbled onto your blog and read a few post. I like your style of writing... http://www.burtbrownracingtrans.com/cellular-app-growth-developments-in-2018/



ashlydoll (none / 0) (#142)
by Muhammad Siddiq on Mon Sep 16, 2019 at 07:33:34 AM PST

I have a similar interest this is my page read everything carefully and let me know what you think. http://www.arabic-av.com/4-top-cross-platform-mobile-app-development-tools/



ashlydoll (none / 0) (#143)
by Muhammad Siddiq on Tue Sep 17, 2019 at 07:50:56 AM PST

Acknowledges for paper such a beneficial composition, I stumbled beside your blog besides decipher a limited announce. I want your technique of inscription... homedepot survey



ashlydoll (none / 0) (#144)
by Muhammad Siddiq on Wed Sep 18, 2019 at 05:44:22 AM PST

Hi there, I discovered your blog per Google bit searching for such kinda educational advise moreover your inform beholds very remarkable for me. appliance repair vancouver bc



ashlydoll (none / 0) (#145)
by Muhammad Siddiq on Wed Oct 02, 2019 at 07:24:52 AM PST

These websites are really needed, you can learn a lot. buy push traffic



ashlydoll (none / 0) (#146)
by Muhammad Siddiq on Thu Oct 03, 2019 at 05:27:41 AM PST

This is helpful, nonetheless it can be crucial so that you can check out the following website: nha cai uy tin nhat



ashlydoll (none / 0) (#147)
by Muhammad Siddiq on Fri Oct 04, 2019 at 06:06:32 AM PST

I simply want to tell you that I am new to weblog and definitely liked this blog site. Very likely I'm going to bookmark your blog . You absolutely have wonderful stories. Cheers for sharing with us your blog. hire private driver in paris



ashlydoll (none / 0) (#148)
by Muhammad Siddiq on Tue Oct 08, 2019 at 01:35:02 AM PST

This is helpful, nonetheless it can be crucial so that you can check out the following website: BB italia



ashlydoll (none / 0) (#149)
by Muhammad Siddiq on Thu Oct 10, 2019 at 05:41:55 AM PST

I simply want to tell you that I am new to weblog and definitely liked this blog site. Very likely I'm going to bookmark your blog . You absolutely have wonderful stories. Cheers for sharing with us your blog. kant en klaar gordijnen 280 breed



ashlydoll (none / 0) (#150)
by Muhammad Siddiq on Fri Oct 11, 2019 at 07:22:00 AM PST

I like to recommend exclusively fine plus efficient information and facts, hence notice it: auto glass replacement



ashlydoll (none / 0) (#151)
by Muhammad Siddiq on Fri Oct 11, 2019 at 09:57:55 AM PST

I've proper selected to build a blog, which I hold been deficient to do for a during. Acknowledges for this inform, it's really serviceable! check it



ashlydoll (none / 0) (#152)
by Muhammad Siddiq on Fri Oct 18, 2019 at 01:56:04 AM PST

I also wrote an article on a similar subject will find it at write what you think. Happy Birthday Wishes



ashlydoll (none / 0) (#153)
by Muhammad Siddiq on Wed Oct 30, 2019 at 05:48:32 AM PST

Gives you the best website address I know there alone you'll find how easy it is. B&B Italia herstofferen



ashlydoll (none / 0) (#154)
by Muhammad Siddiq on Wed Nov 20, 2019 at 10:04:32 AM PST

Acknowledges for penmanship such a worthy column, I stumbled beside your blog besides predict a handful advise. I want your tone of manuscript... local movers burnaby



ashlydoll (none / 0) (#155)
by Muhammad Siddiq on Wed Nov 27, 2019 at 07:56:25 AM PST

Initial You got a awesome blog .I determination be involved in plus uniform minutes. i view you got truly very functional matters , i determination be always checking your blog blesss. free movies123



ashlydoll (none / 0) (#156)
by Muhammad Siddiq on Sat Nov 30, 2019 at 08:53:46 PM PST

On this page you can read my interests, write something special. Ki Residences floor plan



ashlydoll (none / 0) (#157)
by Muhammad Siddiq on Sat Nov 30, 2019 at 10:14:31 PM PST

You ought to basically fantastic not to mention solid advice, which means notice: royal green price



ashlydoll (none / 0) (#158)
by Muhammad Siddiq on Sat Nov 30, 2019 at 11:26:14 PM PST

Acknowledges for penmanship such a worthy column, I stumbled beside your blog besides predict a handful advise. I want your tone of manuscript... midwood condo review



ashlydoll (none / 0) (#159)
by Muhammad Siddiq on Sun Dec 01, 2019 at 12:54:32 AM PST

I read this article. I think You put a great deal of exertion to make this article. I like your work. avenir price



ashlydoll (none / 0) (#160)
by Muhammad Siddiq on Sun Dec 01, 2019 at 02:14:37 AM PST

Gives you the best website address I know there alone you'll find how easy it is. one holland village showflat



ashlydoll (none / 0) (#161)
by Muhammad Siddiq on Tue Dec 03, 2019 at 08:54:30 PM PST

On my website you'll see similar texts, write what you think. Linteloo herstofferen



ashlydoll (none / 0) (#162)
by Muhammad Siddiq on Wed Dec 18, 2019 at 05:55:31 AM PST

I should say only that its awesome! The blog is informational and always produce amazing things. mydiydirect



ashlydoll (none / 0) (#163)
by Muhammad Siddiq on Fri Dec 20, 2019 at 05:10:50 AM PST

I also wrote an article on a similar subject will find it at write what you think. moroccan rugs



ashlydoll (none / 0) (#164)
by Muhammad Siddiq on Sat Dec 28, 2019 at 02:10:26 AM PST

Beaver says I also have such interest, you can read my profile here: love and co review



ashlydoll (none / 0) (#165)
by Muhammad Siddiq on Sun Jan 05, 2020 at 08:04:57 AM PST

On that website page, you'll see your description, why not read through this. tempo traveller in chandigarh



ashlydoll (none / 0) (#166)
by Muhammad Siddiq on Fri Jan 17, 2020 at 11:25:46 PM PST

I also wrote an article on a similar subject will find it at write what you think. Love & Co review



ashlydoll (none / 0) (#167)
by Muhammad Siddiq on Wed Jan 29, 2020 at 10:56:53 AM PST

It's superior, however , check out material at the street address. movies 123



ashlydoll (none / 0) (#168)
by Muhammad Siddiq on Tue Feb 11, 2020 at 03:10:24 AM PST

I wrote about a similar issue, I give you the link to my site. Linteloo bank herstofferen



Thinking of you (none / 0) (#169)
by drv9977 on Thu Feb 13, 2020 at 12:11:04 AM PST

Love is an intense feeling which can never be expressed in simple words...These "Thinking of you quotes" will surely help you in expressing your love this valentine's day...



ashlydoll (none / 0) (#170)
by Muhammad Siddiq on Fri Mar 27, 2020 at 12:23:50 AM PST

I wrote about a similar issue, I give you the link to my site. kant en klaar gordijnen 280 breed



mshahid (none / 0) (#171)
by bordeyorza on Wed Sep 16, 2020 at 03:47:26 AM PST

I havent any word to appreciate this post.....Really i am impressed from this post....the person who create this post it was a great human..thanks for shared this with us. Google Analytics Individual Qualification Certification Exam Answers



seo (none / 0) (#172)
by mshahid seo on Fri Sep 18, 2020 at 11:59:41 AM PST

I am happy to find your distinguished way of writing the post. Now you make it easy for me to understand and implement the concept. Thank you for the post. süperbetin



seo (none / 0) (#173)
by mshahid seo on Mon Oct 05, 2020 at 08:26:37 AM PST

That you're allowed to place leaders, however is not one way links, except when they're just authorised together with regarding niche. judi online



seo (none / 0) (#174)
by mshahid seo on Wed Oct 07, 2020 at 08:09:48 AM PST

It's very informative and you are obviously very knowledgeable in this area. You have opened my eyes to varying views on this topic with interesting and solid content. cung cấp bột cá xuất khẩu



Good Job (none / 0) (#175)
by AmirHashmi on Tue Dec 08, 2020 at 07:14:11 AM PST

You have to write the article in the right direction, people are getting a good understanding here, you publish it in this way, in reality, it is very good Magic Delay Cream in Pakistan Cialis Tablets in Pakistan Montalin Capsules in Pakistan Vimax Pills in Pakistan Hammer Of Thor in Pakistan Super Kamagra Tablets in Pakistan Levitra Tablets in Pakistan Viagra Tablets in Pakistan Montalin Capsules Price in Pakistan Vimax Pills Price In Pakistan Hammer Of Thor Price in Pakistan Original Montalin Capsules in Pakistan Original Vimax Pills in Pakistan Original Hammer Of Thor in Pakistan



Thanks For Sharing (none / 0) (#176)
by AmirHashmi on Mon Jun 28, 2021 at 04:34:55 AM PST

Right To The Point And Detailed As Well Accordingly Depending Upon the Matter/Topic. You Have Managed This Greatly For Sure. Really nice post. Thank you so much for sharing. Also, We Are Offering A lot Of Brands check this out... Bio Herbs Royal King Honey in Pakistan Black Horse Vital Honey in Pakistan Vip Cougar Secret Honey in Pakistan Golden Royal Honey in Pakistan Kingdom Royal Honey in Pakistan Power Horse Royal Sidr Honey in Pakistan Royal Honey For Her in Pakistan Royal Honey For Him in Pakistan Royal Honey For Vip in Pakistan Royal Honey Power 52 in Pakistan Tongkat Ali Power Plus Capsules in Pakistan Vip Royal Honey in Pakistan Vital Honey in Pakistan



Thanks For Sharing (none / 0) (#177)
by AmirHashmi on Mon Jun 28, 2021 at 04:35:38 AM PST

Right To The Point And Detailed As Well Accordingly Depending Upon the Matter/Topic. You Have Managed This Greatly For Sure. Really nice post. Thank you so much for sharing. Also, We Are Offering A lot Of Brands check this out... Bio Herbs Royal King Honey in Pakistan Black Horse Vital Honey in Pakistan Vip Cougar Secret Honey in Pakistan Golden Royal Honey in Pakistan Kingdom Royal Honey in Pakistan Power Horse Royal Sidr Honey in Pakistan Royal Honey For Her in Pakistan Royal Honey For Him in Pakistan Royal Honey For Vip in Pakistan Royal Honey Power 52 in Pakistan Tongkat Ali Power Plus Capsules in Pakistan Vip Royal Honey in Pakistan Vital Honey in Pakistan



Scoop Ad Server | 177 comments (177 topical, 0 hidden)
Display: Sort:

Hosted by ScoopHost.com Powered by Scoop
All trademarks and copyrights on this page are owned by their respective companies. Comments are owned by the Poster. The Rest © 1999 The Management

create account | faq | search