Friday, March 26, 2010

European Court of Justice rules in Google's Favour

Google aims to provide as much information as possible to users so that they can make informed decisions. For this reason, we have been awaiting a series of decisions by the European Court of Justice that explore the extent to which trade mark rights can be used to restrict information available to users. The first of those decisions was delivered today.

The question before the court was whether advertisers should be allowed to choose keywords freely when reaching out to users on the Internet. In other words, if advertisers are allowed to show advertisements when another company's brand name is entered as a search query.

Trade marks are part of our daily life and culture, helping us to identify the products and services that we may be looking for. They are key for companies to market and advertise their products and services. But trade mark rights are not absolute.

We believe that user interest is best served by maximizing the choice of keywords, ensuring relevant and informative advertising for a wide variety of different contexts. For instance, if a user is searching for information about a particular car, he or she will want more than just that car’s website. They might be looking for different dealers that sell that car, second hand cars, reviews about the car or looking for information about other cars in the same category.

And, contrary to what some are intimating, this case is not about us arguing for a right to advertise counterfeit goods. We have strict policies that forbid the advertising of counterfeit goods; it's a bad user experience. We work collaboratively with brand owners to better identify and deal with counterfeiters.

Some companies want to limit choice for users by extending trade mark law to encompass the use of keywords in online advertising. Ultimately they want to be able to exercise greater control over the information available to users by preventing other companies from advertising when a user enters their trade mark as a search query. In other words, controlling and restricting the amount of information that users may see in response to their searches.

Today, the Court confirmed that Google has not infringed trade mark law by allowing advertisers to bid for keywords corresponding to their competitors’ trade marks. It also confirmed that European law that protects internet hosting services applies to Google’s AdWords advertising system. This is important because it is a fundamental principle behind the free flow of information over the internet.

Our guiding principle has always been that advertising should benefit users, and our aim is to ensure that ads are relevant and useful. We will study the decision as we move forward in order to make sure that we continue to deliver advertising that is perceived as both valuable and relevant by our users.

Posted by Dr. Harjinder S. Obhi, Senior Litigation Counsel, EMEA

source : http://googleblog.blogspot.com
read more “European Court of Justice rules in Google's Favour”

Wednesday, October 14, 2009

How To Make a drop down Menu



To make the dropdown menu, you only make the code be like this :

<form><select name="menu" onchange="window.open(this.options[this.selectedIndex].value,'_blank')"size=1 name=menu><option value=0 selected> Your text title here! </option>

<option value=" your address link here "> the text here will be display </option> </select></form>

For example, the code such as the following :

<form><select name="menu" onchange="window.open(this.options[this.selectedIndex].value,'_blank')"size=1 name=menu>

<option>- kphoc blog - </option>

<!-- change the links with your own -->

<option value="http://kphoc-09.blogspot.com/search/label/news/">kphoc News</option>

<option value="http://kphoc-09.blogspot.com/search/label/announce/">Announcement</option>

<option value="http://kphoc-09.blogspot.com/search/label/honda%20tech/">Honda-Tech</option>

<option value="http://kphoc-09.blogspot.com/search/label/review/">Featured Cars</option>

</select></form>

You can make the drop down menu more than one, just make the code more than one, so very simple.

Now, how to add this code to your blog. This is the step :

1. Login to blogger with your ID

2. After entering the dashboard page , click Layout.

3. Click at Page Elements tab. See the picture below :



4. Click at Add a Gadget.

5. After emerging pop up window , Klik add to blog button for the things HTML/JavaScript. See the picture following :



6. Copy and paste the code below into available column :

<form><select name="menu" onchange="window.open(this.options[this.selectedIndex].value,'_blank')"size=1 name=menu>

<option>- kphoc blog - </option>

<!-- change the links with your own -->

<option value="http://kphoc-09.blogspot.com/search/label/news/">kphoc News</option>

<option value="http://kphoc-09.blogspot.com/search/label/announce/">Announcement</option>

<option value="http://kphoc-09.blogspot.com/search/label/honda%20tech/">Honda-Tech</option>

<option value="http://kphoc-09.blogspot.com/search/label/review/">Featured Cars</option>

</select></form>

7. Click Save button.

Finish.
read more “How To Make a drop down Menu”

Add a Search Engine to Your Blog

Installation a search engine in blog of course will make your visitor is easier to find the articles in your blog, for the reason hence opening the big opportunity of your articles will in reading by many visitors.





To the point, to add this search engine to your blog, following this step :

1. Login to blogger with your ID

2. After entering the dasboard page , click Layout.

3. Click at Page Element tab. See the picture below :



4. Click on Add gadget

5. Click the sign plus ( + ) for HTML/JavaScript

6. Copy and paste the code below into available column :

<form id="searchThis" action="/search" style="display:inline;" method="get">
<input id="searchBox" name="q" size="20" type="text"/> <input id="searchButton" value="Search" type="submit"/>
</form>

7. Click Save button.

Finish.

At the code above, you'd meet the code be like this :

size="20"

The code is to arrange the wide of seach box. You can change it according to desire, ever greater of his value of course more wide. Example : size="25", size="30"

And you will find the code like this :

value="Search"

You can change this word with your word. Example : value="GO !"
read more “Add a Search Engine to Your Blog”