Google Community Chat
 
Open links in new windows?

You're visiting Google Community as a guest.
In order to post, you'll need to register and log in.

(If you were registered and logged in, these advertisements wouldn't be here)
Post new topic   Reply to topic    Google Community Forum Index // Google AdWords & AdSense Forum
   
Author Message
eiledon
Noogle
Noogle


Joined: 02 Sep 2006
Location: Cape Town, South Africa
322.80 GC$

Items

PostPosted: Sat Sep 02, 2006 8:29 am    Post subject: Open links in new windows? Reply with quote
Is there a way you can set google ads to open websites in new windows instead of people moving away from your site immiediately after clicking?
_________________
http://www.1stopmobile.co.za
http://www.eiledon.co.za
Back to top
View user's profile Send private message Visit poster's website
andrew247
Feel the Power
Google Guru


Joined: 18 Oct 2005
Location: c:\GoogleCommunity
88888.75 GC$

Items

PostPosted: Sat Sep 02, 2006 8:40 am    Post subject: Reply with quote
As far as I'm aware, this is only possible with adsearch, and not regular adverts.
_________________
Football Rumours | Gloog
Back to top
View user's profile Send private message Send e-mail Visit poster's website MSN Messenger Google Talk
wwwSENSERELYcom
Junior Googler
Junior Googler


Joined: 14 Jul 2006
Location: Ashford, UK
2146.30 GC$

Items

PostPosted: Sat Sep 09, 2006 3:33 am    Post subject: Reply with quote
The only way is if they hold SHIFT key pressed while they click.
_________________
Senserely Yours, James Smile
Increase your AdSense earnings with Senserely.com.
Also, if you are a musician try 1...2..FREE MUSIC!
Back to top
View user's profile Send private message Visit poster's website
angel2017
Genius Member
Senior Googler


Joined: 11 Sep 2006
Location: Heaven
1972.40 GC$

Items

PostPosted: Mon Sep 11, 2006 5:00 am    Post subject: Reply with quote
That would be categorized as invalid clicks...

Remember that clicking Google ads must not result in a new window!

Safety play, guys!

_________________
Free website tipstrick
Asbestos Cancer Online


Last edited by angel2017 on Sat Sep 23, 2006 3:15 am; edited 1 time in total
Back to top
View user's profile Send private message Send e-mail Visit poster's website
alemcherry
Junior Googler
Junior Googler


Joined: 10 Jun 2006

1632.15 GC$

Items

PostPosted: Tue Sep 12, 2006 5:31 am    Post subject: Reply with quote
Nope, you are not allowed to do that!
_________________
Cheap Dedicated - Shared Hosting Server Reviews !

Top Paying Adsense Keywords
Back to top
View user's profile Send private message
angel2017
Genius Member
Senior Googler


Joined: 11 Sep 2006
Location: Heaven
1972.40 GC$

Items

PostPosted: Sat Sep 16, 2006 2:38 am    Post subject: Reply with quote
Every invalid clicks will raising a red flag on Google Adsense and if the flags reaching some amount of number, then your account can get banned!
Peace
Angel of Adsense

_________________
Free website tipstrick
Asbestos Cancer Online
Back to top
View user's profile Send private message Send e-mail Visit poster's website
zsk_00
Googler
Googler


Joined: 11 Mar 2006
Location: Canada
3086.95 GC$

Items

PostPosted: Mon Sep 18, 2006 8:06 am    Post subject: Reply with quote
If you click on the ads on your own site, you will be banned whether you use shift key or not. Google rules are for the website owners and not for the visitors. Today, I used shift key to click on 5 ads, all of them were on submitting URL for free! and all of them looked interesting.

The thing which is not allowed by google is to make you site design such that when a visitor clicks on an ad, it opens in a new window. That will get you banned! Google does not ban your account because of a visitors actions unless google thinks that visitor is somehow associated with you.

Zafar
_________________
http://www.vbuniverse.com
http://gpsnavigate.blogspot.com
Back to top
View user's profile Send private message Visit poster's website Yahoo Messenger
wwwSENSERELYcom
Junior Googler
Junior Googler


Joined: 14 Jul 2006
Location: Ashford, UK
2146.30 GC$

Items

PostPosted: Mon Sep 18, 2006 10:45 am    Post subject: Reply with quote
Well explained, I didn't want to bother explaining that which is so clear to anyone who has read and understood AdSense's ToS.
_________________
Senserely Yours, James Smile
Increase your AdSense earnings with Senserely.com.
Also, if you are a musician try 1...2..FREE MUSIC!
Back to top
View user's profile Send private message Visit poster's website
weblaunch
Web Launch
Googler


Joined: 25 Apr 2005

2368.25 GC$

Items

PostPosted: Mon Sep 18, 2006 8:19 pm    Post subject: Reply with quote
As an AdWords advertiser I would not want people to open my ad in a new window, especially when I had to pay a several dollars a click. I don't think Google will allow this option any time soon.
_________________
Free Web & Article Directory | Website Promotion Services
Back to top
View user's profile Send private message
angel2017
Genius Member
Senior Googler


Joined: 11 Sep 2006
Location: Heaven
1972.40 GC$

Items

PostPosted: Tue Sep 19, 2006 12:02 am    Post subject: PLEASE READ THIS !!! Reply with quote
HOW TO DISABLE RIGHT CLICK?
As we know on Google's policy that : clicking on Google ads must not result in a new window...."
Clicking on the ads with right click and open it in a new tab/window will be categorized as invalid click. This script is useful for avoiding the invalid clicks at your ads! Here's a script for disabling the right click on your browser, so visitors could not open your ads in new tab or new window.



<SCRIPT language=JavaScript>
<!--
var message="Put your line 1 here   \n \n  Put your line 2 here  \n \n  Put your line 3 here";
function click(e){if(document.all){if(event.button==2||event.button==3){alert(message);return false;}}
if(document.layers){if(e.which==3){alert(message);return false;}}}
if(document.layers){document.captureEvents(Event.MOUSEDOWN);}
document.onmousedown=click;

function MM_displayStatusMsg(msgStr) { //v1.0
  status=msgStr;
  document.MM_returnValue = true;
}
//-->
</SCRIPT>
(This script works on IE browser only)



<script type="text/javascript">
<!--
function disableRightClick(e)
{
  var message = "Change this tipstrick text with your message";
  if(!document.rightClickDisabled) // initialize
  {
    if(document.layers)
    {
      document.captureEvents(Event.MOUSEDOWN);
      document.onmousedown = disableRightClick;
    }
    else document.oncontextmenu = disableRightClick;
    return document.rightClickDisabled = true;
  }
  if(document.layers || (document.getElementById && !document.all))
  {
    if (e.which==2||e.which==3)
    {
      alert(message);
      return false;
    }
  }
  else
  {
    alert(message);
    return false;
  }
}
disableRightClick();

function MM_callJS(jsStr) { //v2.0
  return eval(jsStr)
}
//-->
</script>
(This script works on most browsers)



How to avoiding click at your own ads!
Add this code between your ads code :
google_adtest='on';


Edit in the registry Editor :
[HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\MenuExt]
[HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\MenuExt\Google AdSense Preview Tool]
@="http://pagead2.googlesyndication.com/pagead/preview/en/preview.html"
"Flags"=dword:00000001


To remove the ads testing for your web :
Remove the google_adtest='on'; at your code


Remove from registry :
[-HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\MenuExt\Google AdSense Preview Tool]

I hope that could help y'all




Angel of Adsense

_________________
Free website tipstrick
Asbestos Cancer Online
Back to top
View user's profile Send private message Send e-mail Visit poster's website
Sponsored Links
Posted: 4 Dec 2008 12:20 pm    Post subject: Advertisements
Back to top
Post new topic   Reply to topic    Google Community Forum Index // Google AdWords & AdSense Forum All times are GMT - 8 Hours
Page 1 of 1


 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
Host your free forums with Invision Plus.net forum web hosting with your own subdomain.

alexisBlue v1.2 // Theme Created By: Andrew Charron // Icons in Part By: Travis Carden

© 2005-2006 Google Community

Powered by phpBB

Privacy Policy | Contact Us

Powered by Google Search blog

This website is not affiliated in any way with Google, Inc.
Google™ is a registered trademark of Google, Inc.