var Rimifon = { 
	     "Ads" : new Object, 
	     "NewFloatAd" : function(imgUrl, strLink) 
	     { 
	         var ad = document.createElement("a"); 
	         ad.DirV = true; 
	         ad.DirH = true; 
	         ad.AutoMove = true; 
	         ad.Image = new Image; 
	         ad.Seed = Math.random(); 
	         ad.Timer = setInterval("Rimifon.Float(" + ad.Seed + ")", 50); 
	         this.Ads[ad.Seed] = ad; 
	         ad.Image.Parent = ad; 
	         ad.style.position = "absolute"; 
	         ad.style.left =(document.documentElement.clientWidth-document.body.clientWidth)/2;
	         ad.style.top = 0; 
	         ad.Image.src = imgUrl; 
	         ad.Image.width=150;
	         ad.Image.height=150; 
	         ad.Image.border=0;
	         ad.Image.onmouseover = function(){this.Parent.AutoMove = false;} 
	         ad.Image.onmouseout = function(){this.Parent.AutoMove = true;} 
	         if(strLink) 
	         { 
	             ad.href = strLink; 
	             ad.Image.border = 0; 
	             ad.target = "_blank"; 
	         } 
	         ad.appendChild(ad.Image); 
	         document.body.appendChild(ad); 
	         return ad; 
	     }, 
	     "Float" : function(floatId) 
	     { 
	         var ad = this.Ads[floatId]; 
	         if(ad.AutoMove) 
	         { 
	             var curLeft = parseInt(ad.style.left); 
	             var curTop = parseInt(ad.style.top); 
	             
	             if(ad.offsetWidth + curLeft > document.body.clientWidth + document.body.scrollLeft - 1+(document.documentElement.clientWidth-document.body.clientWidth)/2) 
	             { 
	                 curLeft = document.body.scrollLeft + document.body.clientWidth - ad.offsetWidth+(document.documentElement.clientWidth-document.body.clientWidth)/2; 
	                 ad.DirH = false; 
	             } 
	             if(ad.offsetHeight + curTop > document.documentElement.clientHeight+document.documentElement.scrollTop - 1) 
	             { 
	                 curTop = document.documentElement.clientHeight+document.documentElement.scrollTop - ad.offsetHeight; 
	                 ad.DirV = false; 
	             } 
	             if(curLeft < document.body.scrollLeft+(document.documentElement.clientWidth-document.body.clientWidth)/2) 
	             { 
	                 curLeft = document.body.scrollLeft+(document.documentElement.clientWidth-document.body.clientWidth)/2; 
	                 ad.DirH = true; 
	             } 
	             if(curTop < document.documentElement.scrollTop) 
	             { 
	                 curTop = document.documentElement.scrollTop; 
	                 ad.DirV = true; 
	             } 
	             
	             ad.style.left = curLeft + (ad.DirH ? 1 : -1) + "px"; 
	             ad.style.top = curTop + (ad.DirV ? 1 : -1) + "px"; 
	         } 
	     } 
	} 
	
	var Rimifon2 = { 
	     "Ads2" : new Object, 
	     "NewFloatAd2" : function(imgUrl, strLink) 
	     { 
	         var ad = document.createElement("a"); 
	         ad.DirV = true; 
	         ad.DirH = true; 
	         ad.AutoMove = true; 
	         ad.Image = new Image; 
	         ad.Seed = Math.random(); 
	         ad.Timer = setInterval("Rimifon2.Float2(" + ad.Seed + ")", 50); 
	         this.Ads2[ad.Seed] = ad; 
	         ad.Image.Parent = ad; 
	         ad.style.position = "absolute"; 
	         ad.style.left =document.body.clientWidth+(document.documentElement.clientWidth-document.body.clientWidth)/2-ad.Image.width;
	         ad.style.top = 0; 
	         ad.Image.src = imgUrl; 
	         ad.Image.width=150;
	         ad.Image.height=150; 
	         ad.Image.border=document.documentElement.scrollTop;
	         ad.Image.onmouseover = function(){this.Parent.AutoMove = false;} 
	         ad.Image.onmouseout = function(){this.Parent.AutoMove = true;} 
	         if(strLink) 
	         { 
	             ad.href = strLink; 
	             ad.Image.border = 0; 
	             ad.target = "_blank"; 
	         } 
	         ad.appendChild(ad.Image); 
	         document.body.appendChild(ad); 
	         return ad; 
	     }, 
	     "Float2" : function(floatId) 
	     { 
	         var ad = this.Ads2[floatId]; 
	         if(ad.AutoMove) 
	         { 
	             var curLeft = parseInt(ad.style.left); 
	             var curTop = parseInt(ad.style.top); 
	             if(ad.offsetWidth + curLeft > document.body.clientWidth + document.body.scrollLeft - 1+(document.documentElement.clientWidth-document.body.clientWidth)/2) 
	             { 
	                 curLeft = document.body.scrollLeft + document.body.clientWidth - ad.offsetWidth+(document.documentElement.clientWidth-document.body.clientWidth)/2; 
	                 ad.DirH = false; 
	             } 
	             if(ad.offsetHeight + curTop > document.documentElement.clientHeight+document.documentElement.scrollTop - 1) 
	             { 
	                 curTop = document.documentElement.clientHeight+document.documentElement.scrollTop - ad.offsetHeight; 
	                 ad.DirV = false; 
	             } 
	             if(curLeft < document.body.scrollLeft+(document.documentElement.clientWidth-document.body.clientWidth)/2) 
	             { 
	                 curLeft = document.body.scrollLeft+(document.documentElement.clientWidth-document.body.clientWidth)/2; 
	                 ad.DirH = true; 
	             } 
	             if(curTop < document.documentElement.scrollTop) 
	             { 
	                 curTop = document.documentElement.scrollTop; 
	                 ad.DirV = true; 
	             } 
	             
	             ad.style.left = curLeft + (ad.DirH ? 1 : -1) + "px"; 
	             ad.style.top = curTop + (ad.DirV ? 1 : -1) + "px"; 
	         } 
	     } 
	} 




