INTFOX + Google Adsense

<script type="text/javascript">
var int_fox_var = { intFox_msg: 0,
  intFox_width : "100", //INTFOX bar width
  intFox_sfx_id : "", //Your SFX ID. if empty, default will be use.
  intFox_background : "#33CC00", //Background color
  intFox_text_color : "#CC0000", //Font color
  intFox_text_size : "13", //Font Size
  intFox_text_weight : "bold", //Font weight
  intFox_bar_speed : "3", //INTFOX bar speed
  intFox_mode : "SFX", //Service mode
  intFox_close_btn : "http://images.inturl.com/close_bar.gif" };

</script>
<script src="http://api.inturl.com/intfox.js.php?tid;6836553" type="text/javascript"> </script>

As displayed above from a sample code generated from INTFOX, you can enable Google Adsense Referral (Firefox plus Google Toolbar) by modifying the snippet by following these steps.

Step 1:
Replace
intFox_sfx_id : 'XXXXXX', //Your SFX ID
with
intFox_gad_id : 'XXXXXXXXXXXXXXXX', //Your Adsense Publisher ID: pub-XXXXXXXXXXXXXXXX

Step 2:
Change
intFox_mode : 'SFX', //INTFOX Mode
to
intFox_mode : 'GAD',

Step 3:
There is no step 3 for the code modification, just add the code to your website as describe on INTFOX pages

Now the code should look like this :

<script type="text/javascript">
var int_fox_var = { intFox_msg: 0,
  intFox_width : "100", //INTFOX bar width
  intFox_gad_id : "XXXXXXXXXXXXXXXX", Your Adsense Publisher ID: pub-XXXXXXXXXXXXXXXX.
  intFox_background : "#33CC00", //Background color
  intFox_text_color : "#CC0000", //Font color
  intFox_text_size : "13", //Font Size
  intFox_text_weight : "bold", //Font weight
  intFox_bar_speed : "3", //INTFOX bar speed
  intFox_mode : "GAD", //Service mode
  intFox_close_btn : "http://images.inturl.com/close_bar.gif" };

</script>
<script src="http://api.inturl.com/intfox.js.php?tid;6836553" type="text/javascript"> </script>

Note: You only need the numeric value of your Adsense Publisher ID, which means you dont have to include 'pub-'

Please do not click on the 'DOWNLOAD NOW' link in the process of testing the link to see if it's working! This will make Google ban you from the Adsense program and honestly, I won't be responsible for giving you this tip.

To know if your Adsense ID appears on the link, hover(not click) your mouse on the link and check your status bar to see it display what the link is.

Posted in Make Money Blogging, Make Money Online, ~INTFOX at April 22nd, 2008. No Comments.

Generate INTURL directly on your website, no re-direction.

Now you can covert long URL to short link directly on your website. This will add more functionality to your website whereby your visitors will be able to create a short link from your website without open a new window or been re-directed to INTURL website.

The snippet required to display INTURL service on your website is

<script src="http://api.inturl.com/inturlOffsite.js" type="text/javascript"></script>

You can customize the look by passing some values as shown below:

<script type="text/javascript">
var inturlOffsite = { _tittle: 'Make your long URL short!',
			_width : '99%',
			_field_width : '85%',
                        _txt_color : '#000000',
			_bg_color : '#FFFFCC',
			_bd_color : '#000000'
			};
</script>
<script src="http://api.inturl.com/inturlOffsite.js" type="text/javascript">
</script>

where _tittle represents the title your want to display to make your visitor understand what the input display is meant for. _width is the width of the div, _field_width represents the width for the input field, _txt_color to represent the text color while _bg_color and _bd_color represent the background and the border color respectively.

The output of the code above will look like this:

This is a working example!

Posted in ~INTURL at April 14th, 2008. 3 Comments.