
	//== Å¬·¡½º ÃÊ±âÈ­
	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 = (this.max_left / 2) - 490 - 90;


				//this.rand_left = 750;

				this.movePage = "http://orange.crossmedia.co.kr/rac?cd=03C5&ad=AD000046F5&curd=02EB9&cus=1";
				this.linktarget = "blank";
				this.sidx = "662";

				if(this.linktarget == 'blank')
				{
					mtarget = '_blank';
				}else
				{
					mtarget = '_self';
				}
				this.inHTML += "<object classid='clsid:d27cdb6e-ae6d-11cf-96b8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0' width='90' height='180' align='middle'>";
				this.inHTML += "<param name='allowScriptAccess' value='always' />";
				this.inHTML += "<param name='allowFullScreen' value='false' />";
				this.inHTML += "<param name='movie' value='http://azoomma.com/poping_banner/uploads/12833008165f60e.swf' />";
				this.inHTML += "<param name='quality' value='high' />";
				this.inHTML += "<param name='menu' value='false' />";
				this.inHTML += "<PARAM NAME='wmode' VALUE='transparent'>";
				this.inHTML += "<PARAM NAME='FlashVars' VALUE='sidx=662'&mtarget="+mtarget+">";
				this.inHTML += "<embed src='http://azoomma.com/poping_banner/uploads/12833008165f60e.swf?sidx=662&mtarget="+mtarget+"' quality='high'  width='90' height='180' align='middle' allowScriptAccess='always' allowFullScreen='false' type='application/x-shockwave-flash' pluginspage='http://www.macromedia.com/go/getflashplayer' />";
				this.inHTML += "</object>";
				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();
	