Internet Marketing: Helping you earn more money

Stats

According to AWStats, 111.1 % added this site to favorites in September. Funny…

I’ll try the script below. When you click on the “Add to your favorites” link in the top left corner, it tries to load addfav.gif. So I will have some stats if the script is used. I know that the stats will not be quite right as the script works in Internet Explorer only. But it’s still interesting to try. Here is the code in case you’ll want to try the script too:

<script language="javascript">
function addFavorite()
{
var fav = new Image();
fav.src = "/addfav.gif";
window.external.AddFavorite(location.href, document.title);
}
if (navigator.appName == "Microsoft Internet Explorer" && navigator.appVersion >= "4.0" && navigator.userAgent.toLowerCase().indexOf("mac") < 0)
{
document.write("¦ <a href='javascript:addFavorite();'>Add to your favorites");
}
</script>

You must be logged in to post a comment.