
	//== Å¬·¡½º ÃÊ±âÈ­
	var poping_banner= function(){
		this.rand_percent	= Math.floor(Math.random() * 100);
		this.max_top		= document.body.scrollTop + (document.body.clientHeight / 2) + 100;
		this.max_left		= document.body.clientWidth;
		//=== ¹è³Ê À§Ä¡ TOP
		//this.rand_top		= Math.floor(Math.random() * this.max_top);		//top °ª º¯°æ
		this.rand_top		= 72;
		//this.rand_top		= 450;
		this.rand_left		= 0;
		this.poping_id		= 'poping_banner';
		this.inHTML			= '';
		this.movePage		= '';
		this.linktarget		= '';
		this.sidx			= '';
	}
	//== ¹è³Ê »ðÀÔ
	poping_banner.prototype.create_banner = function(val)
	{
		poping = document.createElement('DIV');
		poping.id = this.poping_id;
		eval('this.selectBanner_'+val+'()');
		poping.style.cssText = 'position:absolute;';
		poping.style.top = this.rand_top;
		poping.style.left = this.rand_left;
		document.body.appendChild(poping);
	}
	//== ¹è³Ê »èÁ¦
	poping_banner.prototype.poping_delete = function()
	{
		document.body.removeChild(document.getElementById(this.poping_id));
	}
	//== Å¬¸¯½Ã ÀÌµ¿URL
	poping_banner.prototype.poping_move = function()
	{
		if(this.linktarget == 'blank')
		{
			window.open('http://azoomma.com/poping_banner/lib/gogo.htm?sidx='+this.sidx);
		}else
		{
			top.location.href='http://azoomma.com/poping_banner/lib/gogo.htm?sidx='+this.sidx;
		}
	}
	//== ¹è³Ê ¼±ÅÃ ¹× ¹è³Ê ¶ç¿ò.
	poping_banner.prototype.create = function()
	{
	
				if(this.rand_percent <= 100)
				{
					this.create_banner(0);
				}
			
	}
	
			//== °¢°¢ ÇÔ¼ö 0¹øÂ°
			poping_banner.prototype.selectBanner_0 = function()
			{
				//=== ¹è³Ê À§Ä¡ LEFT
				//this.max_left = this.max_left - 90 - 200;
				//this.rand_left = Math.floor(Math.random() * this.max_left);	//left °ª º¯°æ
				this.rand_left = (this.max_left / 2) - 490 - 90;
				//this.rand_left = 750;

				this.movePage = "http://consumer.azoomma.com/wise/artimom/purchase/acom.html";
				this.linktarget = "";
				this.sidx = "622";

				this.inHTML += "<div style='position:relative;'>";
				this.inHTML += "<div><img src='http://azoomma.com/poping_banner/uploads/1276595271e8d06.jpg' onclick='poping_banner.poping_move()' style='cursor:pointer;'></div>";
				this.inHTML += "<div style='position:absolute;top:0px;left:77px;'><img src='http://azoomma.com/poping_banner/lib/_close.gif' onclick='poping_banner.poping_delete()' style='cursor:pointer;'></div>";
				this.inHTML += "</div>";
				this.inHTML += "<img src='http://azoomma.com/poping_banner/lib/blank.htm?sidx="+this.sidx+"' width='1' height='1'>";
				poping.innerHTML = this.inHTML;
			}
			
	//== ½ÇÇà
	poping_banner = new poping_banner();
	poping_banner.create();
	