<!-- This code this protected by copyright -->

function divFloat(){

	if(screen.width >= 1024){

		startX = 15;
		startY = 15;

		html = "  <div id=\"promo_b\" style=\"display:inline; position:absolute; width:100; border:1px solid black;\">\n";
		html += "   <table align=\"center\" width=\"100%\" height=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\n";
		html += "    <tr>\n";
		html += "     <td align=\"center\" valign=\"middle\" width=\"100%\" height=\"18\">\n";
		html += "      <p><a href=\"http://banners3.spacash.com/bannerclick.php?account=jesmai&n=a9656f71&r=11037&t=5\"><img src=\"http://banners3.spacash.com/bannerview.php?account=jesmai&r=11037&t=5&n=a9656f71\" border=\"0\" alt=\"click aqui\"></a></p>\n";
		html += "     </td>\n";
		html += "    </tr>\n";
		html += "   </table>\n";
		html += "  </div>\n";

		document.write(html);

		function ml(id){

			var el = document.all[id];

			el.sP = function(x, y){
		
				this.style.right = x;
				this.style.top = y;

			}

			el.x = startX;
			el.y = startY;

			return el;

		}

		window.stay = function(){

			pY = document.body.scrollTop;

			Obj.y += (pY + startY - Obj.y) / 8;

			Obj.sP(Obj.x, Obj.y);

			setTimeout("stay()", 10);

		}

		Obj = ml("promo_b");

		stay();

	}

}

divFloat();