// °³¹ß
	var ocburl = "http://www.okcashbag.com";
	var doorurl = "https://doorman.okcashbag.com";

// ¿î¿µ
//	var ocburl = "http://www.okcashbag.com";
//	var doorurl = "https://doorman.okcashbag.com";

// ÀÌº¥Æ® °Ë»ö¾î
var defaultKeyword = "2¿ùÀÇ ½ºÆ÷Ã÷ °ÔÀÓ ½ºÅ¸Å¥ÇÏ°í, OKÄ³½¬¹é Æ÷ÀÎÆ® Àû¸³¹ÞÀ¸¼¼¿ä~";

function doNotReload(){
    if(    (event.ctrlKey == true && (event.keyCode == 78 || event.keyCode == 82)) //ctrl+N , ctrl+R // »õÃ¢À¸·Î ¿­±â, »õ·Î°íÄ§
        || (event.keyCode == 116) // function F5    // »õ·Î°íÄ§
		|| (event.keyCode == 8 ) // backspace   // µÚ·Î°¡±â
		|| (event.altKey == true && (event.keyCode == 29 ) )  // alt + ¡ç   // µÚ·Î°¡±â
	  ) 
    {
      event.keyCode = 0;
      event.cancelBubble = true;
      event.returnValue = false;
    }
}

// document.onkeydown = doNotReload; »õ·Î°íÄ§, µÚ·Î°¡±â ¹æÁö (F5, CTRL+N, CTRL+R, BackSpace, ALT+¡ç  ¹æÁö)
title = "::: ÈûÀÌ µÇ´Â Æ÷ÀÎÆ®, OKÄ³½¬¹é :::";	//ÆäÀÌÁö Å¸ÀÌÆ²



/*  Function Equivalent to java.net.URLEncoder.encode(String, "UTF-8")

    Copyright (C) 2002, Cresc Corp.

    Version: 1.0

*/

function encodeURL(str){

    var s0, i, s, u;

    s0 = "";                // encoded str

    for (i = 0; i < str.length; i++){   // scan the source

        s = str.charAt(i);

        u = str.charCodeAt(i);          // get unicode of the char

        if (s == " "){s0 += "+";}       // SP should be converted to "+"

        else {

            if ( u == 0x2a || u == 0x2d || u == 0x2e || u == 0x5f || ((u >= 0x30) && (u <= 0x39)) || ((u >= 0x41) && (u <= 0x5a)) || ((u >= 0x61) && (u <= 0x7a))){       // check for escape

                s0 = s0 + s;            // don't escape

            }

            else {                  // escape

                if ((u >= 0x0) && (u <= 0x7f)){     // single byte format

                    s = "0"+u.toString(16);

                    s0 += "%"+ s.substr(s.length-2);

                }

                else if (u > 0x1fffff){     // quaternary byte format (extended)

                    s0 += "%" + (oxf0 + ((u & 0x1c0000) >> 18)).toString(16);

                    s0 += "%" + (0x80 + ((u & 0x3f000) >> 12)).toString(16);

                    s0 += "%" + (0x80 + ((u & 0xfc0) >> 6)).toString(16);

                    s0 += "%" + (0x80 + (u & 0x3f)).toString(16);

                }

                else if (u > 0x7ff){        // triple byte format

                    s0 += "%" + (0xe0 + ((u & 0xf000) >> 12)).toString(16);

                    s0 += "%" + (0x80 + ((u & 0xfc0) >> 6)).toString(16);

                    s0 += "%" + (0x80 + (u & 0x3f)).toString(16);

                }

                else {                      // double byte format

                    s0 += "%" + (0xc0 + ((u & 0x7c0) >> 6)).toString(16);

                    s0 += "%" + (0x80 + (u & 0x3f)).toString(16);

                }

            }

        }

    }

    return s0;

}

 

/*  Function Equivalent to java.net.URLDecoder.decode(String, "UTF-8")

    Copyright (C) 2002, Cresc Corp.

    Version: 1.0

*/

function decodeURL(str){

    var s0, i, j, s, ss, u, n, f;

    s0 = "";                // decoded str

    for (i = 0; i < str.length; i++){   // scan the source str

        s = str.charAt(i);

        if (s == "+"){s0 += " ";}       // "+" should be changed to SP

        else {

            if (s != "%"){s0 += s;}     // add an unescaped char

            else{               // escape sequence decoding

                u = 0;          // unicode of the character

                f = 1;          // escape flag, zero means end of this sequence

                while (true) {

                    ss = "";        // local str to parse as int

                        for (j = 0; j < 2; j++ ) {  // get two maximum hex characters for parse

                            sss = str.charAt(++i);

                            if (((sss >= "0") && (sss <= "9")) || ((sss >= "a") && (sss <= "f"))  || ((sss >= "A") && (sss <= "F"))) {

                                ss += sss;      // if hex, add the hex character

                            } else {--i; break;}    // not a hex char., exit the loop

                        }

                    n = parseInt(ss, 16);           // parse the hex str as byte

                    if (n <= 0x7f){u = n; f = 1;}   // single byte format

                    if ((n >= 0xc0) && (n <= 0xdf)){u = n & 0x1f; f = 2;}   // double byte format

                    if ((n >= 0xe0) && (n <= 0xef)){u = n & 0x0f; f = 3;}   // triple byte format

                    if ((n >= 0xf0) && (n <= 0xf7)){u = n & 0x07; f = 4;}   // quaternary byte format (extended)

                    if ((n >= 0x80) && (n <= 0xbf)){u = (u << 6) + (n & 0x3f); --f;}         // not a first, shift and add 6 lower bits

                    if (f <= 1){break;}         // end of the utf byte sequence

                    if (str.charAt(i + 1) == "%"){ i++ ;}                   // test for the next shift byte

                    else {break;}                   // abnormal, format error

                }

            s0 += String.fromCharCode(u);           // add the escaped character

            }

        }

    }

    return s0;

}

var Base64 = {
 
		// private property
		_keyStr : "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=",
	 
		// public method for encoding
		encode : function (input) {
			var output = "";
			var chr1, chr2, chr3, enc1, enc2, enc3, enc4;
			var i = 0;
	 
			input = Base64._utf8_encode(input);
	 
			while (i < input.length) {
	 
				chr1 = input.charCodeAt(i++);
				chr2 = input.charCodeAt(i++);
				chr3 = input.charCodeAt(i++);
	 
				enc1 = chr1 >> 2;
				enc2 = ((chr1 & 3) << 4) | (chr2 >> 4);
				enc3 = ((chr2 & 15) << 2) | (chr3 >> 6);
				enc4 = chr3 & 63;
	 
				if (isNaN(chr2)) {
					enc3 = enc4 = 64;
				} else if (isNaN(chr3)) {
					enc4 = 64;
				}
	 
				output = output +
				this._keyStr.charAt(enc1) + this._keyStr.charAt(enc2) +
				this._keyStr.charAt(enc3) + this._keyStr.charAt(enc4);
	 
			}
	 
			return output;
		},
	 
		// public method for decoding
		decode : function (input) {
			var output = "";
			var chr1, chr2, chr3;
			var enc1, enc2, enc3, enc4;
			var i = 0;
	 
			input = input.replace(/[^A-Za-z0-9\+\/\=]/g, "");
	 
			while (i < input.length) {
	 
				enc1 = this._keyStr.indexOf(input.charAt(i++));
				enc2 = this._keyStr.indexOf(input.charAt(i++));
				enc3 = this._keyStr.indexOf(input.charAt(i++));
				enc4 = this._keyStr.indexOf(input.charAt(i++));
	 
				chr1 = (enc1 << 2) | (enc2 >> 4);
				chr2 = ((enc2 & 15) << 4) | (enc3 >> 2);
				chr3 = ((enc3 & 3) << 6) | enc4;
	 
				output = output + String.fromCharCode(chr1);
	 
				if (enc3 != 64) {
					output = output + String.fromCharCode(chr2);
				}
				if (enc4 != 64) {
					output = output + String.fromCharCode(chr3);
				}
	 
			}
	 
			output = Base64._utf8_decode(output);
	 
			return output;
	 
		},
	 
		// private method for UTF-8 encoding
		_utf8_encode : function (string) {
			string = string.replace(/\r\n/g,"\n");
			var utftext = "";
	 
			for (var n = 0; n < string.length; n++) {
	 
				var c = string.charCodeAt(n);
	 
				if (c < 128) {
					utftext += String.fromCharCode(c);
				}
				else if((c > 127) && (c < 2048)) {
					utftext += String.fromCharCode((c >> 6) | 192);
					utftext += String.fromCharCode((c & 63) | 128);
				}
				else {
					utftext += String.fromCharCode((c >> 12) | 224);
					utftext += String.fromCharCode(((c >> 6) & 63) | 128);
					utftext += String.fromCharCode((c & 63) | 128);
				}
	 
			}
	 
			return utftext;
		},
	 
		// private method for UTF-8 decoding
		_utf8_decode : function (utftext) {
			var string = "";
			var i = 0;
			var c = c1 = c2 = 0;
	 
			while ( i < utftext.length ) {
	 
				c = utftext.charCodeAt(i);
	 
				if (c < 128) {
					string += String.fromCharCode(c);
					i++;
				}
				else if((c > 191) && (c < 224)) {
					c2 = utftext.charCodeAt(i+1);
					string += String.fromCharCode(((c & 31) << 6) | (c2 & 63));
					i += 2;
				}
				else {
					c2 = utftext.charCodeAt(i+1);
					c3 = utftext.charCodeAt(i+2);
					string += String.fromCharCode(((c & 15) << 12) | ((c2 & 63) << 6) | (c3 & 63));
					i += 3;
				}
	 
			}
	 
			return string;
		}
	}

//ÁÂÃø³×ºñ
function sNav(chNum,hnNum,snNum){	// chNum : 1depthº¯¼ö(Ã¤³Îº¯¼ö), hnNum : 2depthº¯¼ö, snNum : 3depthº¯¼ö
	var Height      = new Array(    "", "316", "208", "300", "260", "175", "400", "310", "390", "246", "173", "173", "200", "220", "205") //ÁÂÃø ÇÃ·¡½Ã »çÀÌÁî
	var divTopPos1  = new Array( "509", "509", "509", "509", "509", "583", "595", "529"); // Ä«µå hnNum=0 ~ °¹¼ö¸¸Å­ ÁÂÃøÇÃ·¡½Ã ¾Æ·¡ÀÇ ¹è³Ê ¹× ÇÛÇÁµ¥½ºÅ© ÁÂÇ¥°ª
	var divTopPos2  = new Array( "469", "469", "469", "469", "469", "469", "469"); //°¡¸ÍÁ¡
	var divTopPos3  = new Array( "590", "620", "590", "590", "590", "590", "590"); //ÄíÆù
	var divTopPos4  = new Array( "458", "492", "492", "492", "492", "492"); //ÄÜÅÙÃ÷¸ô
	var divTopPos5  = new Array( "422", "422", "422", "422", "422", "422", "422"); //»óÇ°¸ô
	var divTopPos6  = new Array( "630", "588", "588", "588", "588", "670", "670", "588"); //ÀÌº¥Æ®
	var divTopPos7  = new Array( "523", "583", "523", "523", "523", "523", "523", "583", "523", "523"); //ÇïÇÁµ¥½ºÅ©
//	var divTopPos8  = new Array( "645", "625", "645", "645", "645", "645", "645", "625", "645", "645", "645", "665", "665"); //³ªÀÇOkÄ³½¬¹é
	var divTopPos8  = new Array( "685", "685", "685", "685", "685", "685", "685", "685", "685", "685", "685", "685", "685"); //³ªÀÇOkÄ³½¬¹é
	var divTopPos9  = new Array( "518", "492", "492", "492", "492", "492"); //È¸¿øÁ¤º¸°ü¸®(¿øÆÐ½º)_»ç¿ë¾ÈÇÔ
	var divTopPos10 = new Array( "458", "462", "403", "403"); //Á¦ÈÞ¾È³»
	var divTopPos11 = new Array( "458", "462", "403"); //»çÀÌÆ®¸Ê
	var divTopPos12 = new Array( "458", "462", "403", "403", "403", "403", "403", "403", "403", "403"); //»ýÈ°¼­ºñ½º
	var divTopPos13 = new Array( "460", "460", "460", "460", "460", "460", "500"); //»óÇ°¸ô
	var divTopPos14 = new Array( "470", "470", "470", "470", "470", "470", "470", "470"); //»ýÈ°¼­ºñ½º,·Îµð¾Æ


	sNav_fla = "<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0' width='182' height='"+Height[chNum]+"'>"
	sNav_fla += "<param name='movie' value='http://www.okcashbag.com/fla/snav"+chNum+".swf?hn="+hnNum+"&sn="+snNum+"'>"
	sNav_fla += "<param name='quality' value='high'>"
	sNav_fla += "<param name='wmode' value='transparent'><param name=allowScriptAccess value=always>"
	sNav_fla += "<embed src='http://www.okcashbag.com/fla/snav"+chNum+".swf?hn="+hnNum+"&sn="+snNum+"' quality='high' pluginspage='http://www.macromedia.com/go/getflashplayer' type='application/x-shockwave-flash' width='182' height='"+Height[chNum]+"'></embed>"
	sNav_fla += "</object>"

	document.all.LeftMenu.innerHTML=sNav_fla;
	document.all.UserGuide.style.top = eval("divTopPos"+chNum+"["+(hnNum)+"]");
}


function Img(n,tog){eval("document.m"+n+".src=m"+n+"_"+tog+".src"); } //ÀÌ¹ÌÁö ·Ñ¿À¹ö
function sImg(n,tog){eval("document.ms"+n+".src=ms"+n+"_"+tog+".src"); } //¼­ºê ÀÌ¹ÌÁö ·Ñ¿À¹ö

//ÆË¾÷
function pop(url,name,w,h){ window.open(url,name,'width='+w+',height='+h+',scrollbars=no, status=yes') } //Popup(½ºÅ©·Ñ¹Ù¾øÀ½)
function pops(url,name,w,h){ window.open(url,name,'width='+w+',height='+h+',scrollbars=yes, status=yes') } //Popup(½ºÅ©·Ñ¹ÙÀÖÀ½)
function wopen(url){ window.open(url) } //Popup(½ºÅ©·Ñ¹Ù¾øÀ½)


//µ¡±Û ÀÌ¸ðÆ¼ÄÜ ¼±ÅÃ
function ShowReplyEmoticon()
{
  if(document.getElementById("exreply").style.display=="")
      document.getElementById("exreply").style.disply = "none";
  else
  {
      document.getElementById("exreply").style.display="";
      document.getElementById("exreply").setCapture();

      document.getElementById("exreply").style.left = event.clientX + 5 + document.body.scrollLeft;
      document.getElementById("exreply").style.top = event.clientY - 1  + document.body.scrollTop;
  }
}

function SetReplyEmoticon()
{
    var indx;
    document.getElementById("exreply").releaseCapture();
    indx = event.srcElement;

    if(document.getElementById("exreply").style.display=="")
        document.getElementById("exreply").style.display = "none";
    else
    {
        document.getElementById("exreply").style.display = "";
        document.getElementById("exreply").style.left = event.clientX + 5 + document.body.scrollLeft;
        document.getElementById("exreply").style.top = event.clientY - 1  + document.body.scrollTop;
    }
    if (indx.tagName.toLowerCase() == "img" && indx.emo == 1)
    {
	    document.getElementById("exreply_icon").src = indx.src;
	    document.getElementById("replygbn").value = indx.id;
    }
}



//  Æò°¡ÇÏ±â ¼¿·ºÆ® ¹Ú½º ¿­·Á¶ó~~
var flag1 = 1;
function openAlign() {
	if(flag1==1) {
	document.all.aligndiv.style.display='block';
	flag1=0;
	}else {
	document.all.aligndiv.style.display='none';
	flag1=1;
	}
}
/* ±Û º¸±â */
var old='';
function opinion(name)
{
	submenu=eval("opinion_"+name+".style");
	if(old!=submenu)
	{
		if(old!='')
		{
			old.display='none';
		}
		submenu.display='block';
		old=submenu;
	}
	else
	{
		submenu.display='none';
		old='';
	}
}

//ÄÁÅÙÃ÷¿µ¿ª ¾ÆÀÌÇÁ·¹ÀÓ
function Cframe(ifname){

	var iframeids=eval("['"+ifname+"']") // iframe ¿¡ »ç¿ëÇÒ ID ¸¦ ÁöÁ¤ ÇØ ÁÖ¼¼¿ä
	var iframehide="yes"
	function resizeCaller() {
		var dyniframe=new Array()
		for (i=0; i<iframeids.length; i++) {
			if (document.getElementById)
				resizeIframe(iframeids[i])
			if ((document.all || document.getElementById) && iframehide=="no") {
				var tempobj=document.all? document.all[iframeids[i]] : document.getElementById(iframeids[i])
				tempobj.style.display="block"
			}
		}
	}

	function resizeIframe(frameid){
		var currentfr=document.getElementById(frameid)
		if (currentfr && !window.opera) {
			currentfr.style.display="block"
			if (currentfr.contentDocument && currentfr.contentDocument.body.offsetHeight) {//ns6 syntax
				currentfr.height = currentfr.contentDocument.body.offsetHeight;
			} else if (currentfr.document && currentfr.document.body.scrollHeight) {//ie5+ syntax
				currentfr.height = currentfr.document.body.scrollHeight;
			}
			if (currentfr.addEventListener) {
				currentfr.addEventListener("load", readjustIframe, false);
			} else if (currentfr.attachEvent) {
				currentfr.attachEvent("onload", readjustIframe);
			}
		}
	}

	function readjustIframe(loadevt) {
		var crossevt=(window.event)? event : loadevt
		var iframeroot=(crossevt.currentTarget)? crossevt.currentTarget : crossevt.srcElement
		if (iframeroot) {
			resizeIframe(iframeroot.id);
		}
	}

	function loadintoIframe(iframeid, url){
		if (document.getElementById) {
			document.getElementById(iframeid).src=url
		}
	}

	if (window.addEventListener) {
		window.addEventListener("load", resizeCaller, false);
	} else if (window.attachEvent) {
		window.attachEvent("onload", resizeCaller);
	} else {
		window.onload=resizeCaller
	}
}

//ÁÂ,¿ì·Î ÀÌ¹ÌÁö ½½¶óÀÌµù
var sRepeat=null;
function doScrollerIE(dir, src, amount) {
	if (amount==null) amount=85;
	if (dir=="up")
		document.all[src].scrollLeft-=amount;
	else
		document.all[src].scrollLeft+=amount;
	if (sRepeat==null)
		sRepeat = setInterval("doScrollerIE('" + dir + "','" + src + "'," + amount + ")",100);
	return false
}
window.document.onmouseout = new Function("clearInterval(sRepeat);sRepeat=null");
window.document.ondragstart = new Function("return false");


/*¶ó¿îµåÅ×ÀÌºí*/
function roundTable(objID) {
       var obj = document.getElementById(objID);
       var Parent, objTmp, Table, TBody, TR, TD;
       var bdcolor, bgcolor, Space;
       var trIDX, tdIDX, MAX;
       var styleWidth, styleHeight;

       // get parent node
       Parent = obj.parentNode;
       objTmp = document.createElement('SPAN');
       Parent.insertBefore(objTmp, obj);
       Parent.removeChild(obj);

       // get attribute
       bdcolor = obj.getAttribute('rborder');
       bgcolor = obj.getAttribute('rbgcolor');
       radius = parseInt(obj.getAttribute('radius'));
       if (radius == null || radius < 1) radius = 1;
       else if (radius > 6) radius = 6;

       MAX = radius * 2 + 1;

       /*
              create table {{
       */
       Table = document.createElement('TABLE');
       TBody = document.createElement('TBODY');

       Table.cellSpacing = 0;
       Table.cellPadding = 0;

       for (trIDX=0; trIDX < MAX; trIDX++) {
              TR = document.createElement('TR');
              Space = Math.abs(trIDX - parseInt(radius));
              for (tdIDX=0; tdIDX < MAX; tdIDX++) {
                     TD = document.createElement('TD');

                     styleWidth = '1px'; styleHeight = '1px';
                     if (tdIDX == 0 || tdIDX == MAX - 1) styleHeight = null;
                     else if (trIDX == 0 || trIDX == MAX - 1) styleWidth = null;
                     else if (radius > 2) {
                            if (Math.abs(tdIDX - radius) == 1) styleWidth = '2px';
                            if (Math.abs(trIDX - radius) == 1) styleHeight = '2px';
                     }

                     if (styleWidth != null) TD.style.width = styleWidth;
                     if (styleHeight != null) TD.style.height = styleHeight;

                     if (Space == tdIDX || Space == MAX - tdIDX - 1) TD.style.backgroundColor = bdcolor;
                     else if (tdIDX > Space && Space < MAX - tdIDX - 1)  TD.style.backgroundColor = bgcolor;

                     if (Space == 0 && tdIDX == radius) TD.appendChild(obj);
                     TR.appendChild(TD);
              }
              TBody.appendChild(TR);
       }

       /*
              }}
       */

       Table.appendChild(TBody);

       // insert table and remove original table
       Parent.insertBefore(Table, objTmp);
}

function clearText(SH){
if (SH.defaultValue==SH.value)
    SH.value = ""
}

//Select Box
function setSelectBox(selName){
	sel = eval("document.all."+selName);

	borderColor = sel.bordercolor;
	selWidth = parseInt(sel.width);
	bgColor = sel.bgcolor;
	rectLeft = selWidth-2;
	spanWidth = selWidth;

	//span tag
	header  = "<span style='position:relative;margin-bottom:-3px;";
	header += "width:"+spanWidth+";height:18px;border:1px solid "+borderColor+";background-color:"+bgColor+";'>\n";
	header += "<span style='position:absolute;top:-2px;";
	header += "width:"+selWidth+";height:17px;clip:rect(2,"+rectLeft+",18,2);'>\n";
	footer = "</span></span>";

	sel.style.backgroundColor = bgColor;
	sel.style.width = selWidth;

	sel.outerHTML = header+sel.outerHTML+footer;
}

function autoBlur(){	 //ÀÌ¹ÌÁö Á¡¼± ¾Èº¸¿©¿ä
	try{
		if(event.srcElement.tagName=="A"||event.srcElement.tagName=="IMG") document.body.focus();
	}catch(e) {}
}
document.onfocusin=autoBlur;

function iframe_resize(){
        var objBody            =        ifrm.document.body;
        var objFrame        =        document.all["ifrm"];
        objFrame.style.height = objBody.scrollHeight + (objBody.offsetHeight - objBody.clientHeight)
        objFrame.style.width = '588'
}


function ObjWrite(objhtml) {
    document.write(objhtml);
}

function topmenu(n) {
document.write('<DIV id="naviTopDiv">\
	<TABLE width="971" height="107" border="0" cellspacing="0" cellpadding="0">\
		<TR>\
			<TD>\
				<!--»ó´Ü³×ºñ°ÔÀÌ¼Ç-->\
					<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="971" height="107">\
					<param name="movie" value="'+ocburl+'/fla/naviMenu.swf">\
					<param name="quality" value="high">\
					<param name="wmode" VALUE="transparent"><param name=allowScriptAccess value=always>\
					<param name="flashvars" VALUE="naviID='+n+'">\
					<embed src="'+ocburl+'/fla/naviMenu.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="971" height="107">\
					</embed></object>\
				<!--»ó´Ü³×ºñ°ÔÀÌ¼Ç-->\
			</TD>\
		</TR>\
	</TABLE>\
</DIV>');

}
function eventtop(hnum1, hnum2, hnum3) {
document.write("<TABLE width='100%' border='0' cellpadding='0' cellspacing='0'>\
	<TR>\
		<TD><IMG src='"+ocburl+"/img/spacer.gif'></TD>\
		<TD width='971' height='129'>\
					<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0' width='971' height='129'>\
					<param name='movie' value='"+ocburl+"/fla/naviEvent.swf'>\
					<param name='quality' value='high'><param name=allowScriptAccess value=always>\
					<param name='flashvars' VALUE='hnum1="+hnum1+"&hnum2="+hnum2+"&hnum3="+hnum3+"'>\
					<embed src='"+ocburl+"/fla/naviEvent.swf' quality='high' pluginspage='http://www.macromedia.com/go/getflashplayer' type='application/x-shockwave-flash' width='971' height='129'>\
					</embed></object>\
		</TD>\
		<TD><IMG src='"+ocburl+"/img/spacer.gif'></TD>\
	</TR>\
</TABLE>");
}
function mTop() {
document.write("<TABLE width='100%' border='0' cellpadding='0' cellspacing='0'>\
	<TR>\
		<TD><IMG src='"+ocburl+"/img/spacer.gif'></TD>\
		<TD width='971' height='129'>\
			<!--»ó´Ü³×ºñ°ÔÀÌ¼Ç-->\
					<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0' width='971' height='129'>\
					<param name='movie' value='"+ocburl+"/fla/naviEvent.swf'>\
					<param name='quality' value='high'><param name=allowScriptAccess value=always>\
					<param name='flashvars' VALUE='hnum1=0&hnum2=0&hnum3=2'>\
					<embed src='"+ocburl+"/fla/naviEvent.swf' quality='high' pluginspage='http://www.macromedia.com/go/getflashplayer' type='application/x-shockwave-flash' width='971' height='129'>\
					</embed></object>\
			<!--»ó´Ü³×ºñ°ÔÀÌ¼Ç-->\
		</TD>\
		<TD><IMG src='"+ocburl+"/img/spacer.gif'></TD>\
	</TR>\
</TABLE>");
}

function life() {
document.write('<TABLE border="0" cellspacing="0" cellpadding="0">\
	<TR>\
		<TD style="padding:12 0 0 25"><IMG src="'+ocburl+'/img/rightSkyLife_01.gif" alt="»ýÈ°¼­ºñ½º" width="143" height="87"></TD>\
	</TR>\
</TABLE>');	
}

function familysite() {
document.write('<TABLE border="0" cellspacing="0" cellpadding="0">\
	<TR>\
		<TD style="padding:12 0 0 25"><IMG src="'+ocburl+'/img/rightSkyFamily_01.gif" alt="ÆÐ¹Ð¸®»çÀÌÆ®" width="143" height="195"></TD>\
	</TR>\
</TABLE>');	
}

function eventfooter_20080501() {
	document.write("<TABLE width='100%' border='0' cellpadding='0' cellspacing='0'>\
	<TR>\
		<TD background='"+ocburl+"/event/img/footer_bg.jpg'>&nbsp;</TD>\
		<TD background='"+ocburl+"/event/img/footer_bg.jpg' width='971'>\
			<TABLE border='0' cellspacing='0' cellpadding='0'>\
            	<TR>\
            		<TD width='802'>\
            			<TABLE width='802' border='0' cellspacing='0' cellpadding='0'>\
            				<TR>\
            					<TD height='41' colspan='4'></TD>\
           					</TR>\
            				<TR bgcolor='E8E8E8'>\
            					<TD height='1' colspan='4'></TD>\
           					</TR>\
            				<TR>\
            					<TD colspan='4'>\
									<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0' width='802' height='25' id='main'>\
									<param name=wmode value='transparent' />\
									<param name=movie value='"+ocburl+"/fla/footer_familysite.swf' />\
									<param name=quality value=high /><param name=allowScriptAccess value=always>\
									<embed src='"+ocburl+"/fla/footer_familysite.swf' quality=high wmode='transparent' type='application/x-shockwave-flash' pluginspage='http://www.macromedia.com/shockwave/download/index.cgi?p1_prod_version=shockwaveflash' width='802' height='25'>\
									</embed>\
									</object>\
           						</TD>\
           					</TR>\
            				<TR bgcolor='E8E8E8'>\
            					<TD height='1' colspan='4'></TD>\
           					</TR>\
            				<TR>\
            					<TD width='18' height='14' rowspan='2'></TD>\
            					<TD width='83' rowspan='2'><IMG src='"+ocburl+"/img/footer_logo_20080501.jpg' width='116' height='71'></TD>\
            					<TD width='557'>\
									<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0' width='557' height='26' id='main'>\
									<param name=wmode value='transparent' />\
									<param name=movie value='"+ocburl+"/fla/footer_agreement.swf' />\
									<param name=quality value=high /><param name=allowScriptAccess value=always>\
									<embed src='"+ocburl+"/fla/footer_agreement.swf' quality=high wmode='transparent' type='application/x-shockwave-flash' pluginspage='http://www.macromedia.com/shockwave/download/index.cgi?p1_prod_version=shockwaveflash' width='557' height='26'>\
									</embed>\
									</object>\
           						</TD>\
            					<TD style='padding:11 12 0 0' width='144' rowspan='2' align='right' valign='top'>\
            						<TABLE>\
            							<TR>\
            								<TD style=CURSOR:hand; onClick='MM_showHideLayers(\"gnb_sub_menu\",\"\",\"show\");MM_showHideLayers(\"gnb_dsub_menu\",\"\",\"show\");'><IMG src='"+ocburl+"/img/footer_rekated.jpg' width='107' height='17' border='0'></TD>\
           								</TR>\
            							</TABLE>\
           						</TD>\
           					</TR>\
            				<TR>\
            					<TD><IMG src='"+ocburl+"/img/footer_copyright_20080501.jpg' width='557' height='45'></TD>\
           					</TR>\
            				<TR>\
            					<TD height='30' colspan='4'></TD>\
           					</TR>\
            				</TABLE>\
           			</TD>\
            		<TD width='123'>\
            			<DIV id=gnb_sub_menu ONMOUSELEAVE='MM_showHideLayers(\"gnb_sub_menu\",\"\",\"hide\");' style='Z-INDEX:100; VISIBILITY: hidden; POSITION: relative; left: -125px; top: -39px; height: 100px;'>\
            				<TABLE height='111'>\
            					<TR>\
            						<TD> <A onMouseOver='bt(\"leftm0101\",\""+ocburl+"/img/footer_related01on.jpg\");' onMouseOut='bt(\"leftm0101\",\""+ocburl+"/img/footer_related01off.jpg\");' target='_blank' href='http://www.sk.com/'> <IMG id=leftm0101 src='"+ocburl+"/img/footer_related01off.jpg' border=0 name=leftm0101></A><BR>\
                							<A onMouseOver='bt(\"leftm0102\",\""+ocburl+"/img/footer_related02on.jpg\");' onMouseOut='bt(\"leftm0102\",\""+ocburl+"/img/footer_related02off.jpg\");' target='_blank' href='http://www.skenergy.com/'> <IMG id=leftm0102 src='"+ocburl+"/img/footer_related02off.jpg' border=0 name=leftm0102></A><BR>\
                							<A onMouseOver='bt(\"leftm0103\",\""+ocburl+"/img/footer_related03on.jpg\");' onMouseOut='bt(\"leftm0103\",\""+ocburl+"/img/footer_related03off.jpg\");'	 target='_blank' href='http://www.skdutyfree.com/'> <IMG id=leftm0103 src='"+ocburl+"/img/footer_related03off.jpg' border=0 name=leftm0103></A><BR>\
                							<A onMouseOver='bt(\"leftm0104\",\""+ocburl+"/img/footer_related04on.jpg\");' onMouseOut='bt(\"leftm0104\",\""+ocburl+"/img/footer_related04off.jpg\");'	 target='_blank' href='http://www.jeju-utd.com/'> <IMG id=leftm0104 src='"+ocburl+"/img/footer_related04off.jpg' border=0 name=leftm0104></A><BR>\
                							<A onMouseOver='bt(\"leftm0105\",\""+ocburl+"/img/footer_related05on.jpg\");' onMouseOut='bt(\"leftm0105\",\""+ocburl+"/img/footer_related05off.jpg\");' target='_blank' href='http://www.speedmate.com/'> <IMG id=leftm0105 src='"+ocburl+"/img/footer_related05off.jpg' border=0 name=leftm0105></A><BR>\
            							</TD>\
           						</TR>\
            					</TABLE>\
           				</DIV>\
            			</TD>\
           		</TR>\
            	</TABLE>\
		</TD>\
		<TD background='"+ocburl+"/event/img/footer_bg.jpg'>&nbsp;</TD>\
	</TR>\
</TABLE>");
}

function eventfooter() {
	document.write("<TABLE width='100%' border='0' cellpadding='0' cellspacing='0'>\
	<TR>\
		<TD background='"+ocburl+"/event/img/footer_bg.jpg'>&nbsp;</TD>\
		<TD background='"+ocburl+"/event/img/footer_bg.jpg' width='971'>\
			<TABLE border='0' cellspacing='0' cellpadding='0'>\
            	<TR>\
            		<TD width='802'>\
            			<TABLE width='802' border='0' cellspacing='0' cellpadding='0'>\
            				<TR>\
            					<TD height='41' colspan='4'></TD>\
           					</TR>\
            				<TR bgcolor='E8E8E8'>\
            					<TD height='1' colspan='4'></TD>\
           					</TR>\
            				<TR>\
            					<TD colspan='4'>\
									<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0' width='802' height='25' id='main'>\
									<param name=wmode value='transparent' />\
									<param name=movie value='"+ocburl+"/fla/footer_familysite.swf' />\
									<param name=quality value=high /><param name=allowScriptAccess value=always>\
									<embed src='"+ocburl+"/fla/footer_familysite.swf' quality=high wmode='transparent' type='application/x-shockwave-flash' pluginspage='http://www.macromedia.com/shockwave/download/index.cgi?p1_prod_version=shockwaveflash' width='802' height='25'>\
									</embed>\
									</object>\
           						</TD>\
           					</TR>\
            				<TR bgcolor='E8E8E8'>\
            					<TD height='1' colspan='4'></TD>\
           					</TR>\
            				<TR>\
            					<TD width='18' height='14' rowspan='2'></TD>\
            					<TD width='83' rowspan='2'><a href='http://www.skmnc.com' target='_blank'><IMG src='"+ocburl+"/img/footer_newlogo.jpg' width='116' height='71'></a></TD>\
            					<TD width='557'>\
									<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0' width='557' height='26' id='main'>\
									<param name=wmode value='transparent' /><param name=allowScriptAccess value=always>\
									<param name=movie value='"+ocburl+"/fla/footer_agreement.swf' />\
									<param name=quality value=high />\
									<embed src='"+ocburl+"/fla/footer_agreement.swf' quality=high wmode='transparent' type='application/x-shockwave-flash' pluginspage='http://www.macromedia.com/shockwave/download/index.cgi?p1_prod_version=shockwaveflash' width='557' height='26'>\
									</embed>\
									</object>\
           						</TD>\
            					<TD style='padding:11 12 0 0' width='144' rowspan='2' align='right' valign='top'>\
            						<TABLE>\
            							<TR>\
            								<TD style=CURSOR:hand; onClick='MM_showHideLayers(\"gnb_sub_menu\",\"\",\"show\");MM_showHideLayers(\"gnb_dsub_menu\",\"\",\"show\");'><IMG src='"+ocburl+"/img/footer_rekated.jpg' width='107' height='17' border='0'></TD>\
           								</TR>\
            							</TABLE>\
           						</TD>\
           					</TR>\
            				<TR>\
            					<TD><IMG src='"+ocburl+"/img/footer_newcopyright.jpg' width='557' height='45'></TD>\
           					</TR>\
            				<TR>\
            					<TD height='30' colspan='4'></TD>\
           					</TR>\
            				</TABLE>\
           			</TD>\
            		<TD width='123'>\
            			<DIV id=gnb_sub_menu ONMOUSELEAVE='MM_showHideLayers(\"gnb_sub_menu\",\"\",\"hide\");' style='Z-INDEX:100; VISIBILITY: hidden; POSITION: relative; left: -125px; top: -39px; height: 100px;'>\
            				<TABLE height='111'>\
            					<TR>\
            						<TD> <A onMouseOver='bt(\"leftm0101\",\""+ocburl+"/img/footer_related01on.jpg\");' onMouseOut='bt(\"leftm0101\",\""+ocburl+"/img/footer_related01off.jpg\");' target='_blank' href='http://www.sk.com/'> <IMG id=leftm0101 src='"+ocburl+"/img/footer_related01off.jpg' border=0 name=leftm0101></A><BR>\
                							<A onMouseOver='bt(\"leftm0102\",\""+ocburl+"/img/footer_related02on.jpg\");' onMouseOut='bt(\"leftm0102\",\""+ocburl+"/img/footer_related02off.jpg\");' target='_blank' href='http://www.skenergy.com/'> <IMG id=leftm0102 src='"+ocburl+"/img/footer_related02off.jpg' border=0 name=leftm0102></A><BR>\
                							<A onMouseOver='bt(\"leftm0103\",\""+ocburl+"/img/footer_related03on.jpg\");' onMouseOut='bt(\"leftm0103\",\""+ocburl+"/img/footer_related03off.jpg\");'	 target='_blank' href='http://www.skdutyfree.com/'> <IMG id=leftm0103 src='"+ocburl+"/img/footer_related03off.jpg' border=0 name=leftm0103></A><BR>\
                							<A onMouseOver='bt(\"leftm0104\",\""+ocburl+"/img/footer_related04on.jpg\");' onMouseOut='bt(\"leftm0104\",\""+ocburl+"/img/footer_related04off.jpg\");'	 target='_blank' href='http://www.jeju-utd.com/'> <IMG id=leftm0104 src='"+ocburl+"/img/footer_related04off.jpg' border=0 name=leftm0104></A><BR>\
                							<A onMouseOver='bt(\"leftm0105\",\""+ocburl+"/img/footer_related05on.jpg\");' onMouseOut='bt(\"leftm0105\",\""+ocburl+"/img/footer_related05off.jpg\");' target='_blank' href='http://www.speedmate.com/'> <IMG id=leftm0105 src='"+ocburl+"/img/footer_related05off.jpg' border=0 name=leftm0105></A><BR>\
            							</TD>\
           						</TR>\
            					</TABLE>\
           				</DIV>\
            			</TD>\
           		</TR>\
            	</TABLE>\
		</TD>\
		<TD background='"+ocburl+"/event/img/footer_bg.jpg'>&nbsp;</TD>\
	</TR>\
</TABLE>");
document.write("<script>s.pageName='';var s_code=s.t();if(s_code)document.write(s_code);</script>");
}

function footer() {
document.write("<TABLE width='100%' border='0' cellpadding='0' cellspacing='0' background='"+ocburl+"/img/bgCopyright_01.gif'>\
	<TR>\
		<TD><IMG src='"+ocburl+"/img/spacer.gif'></TD>\
		<TD width='971'>\
			<table width='971' border='0' cellpadding='0' cellspacing='0'>\
            	<tr>\
            		<td background='"+ocburl+"/img/copyright_01.gif'>\
            			<table width='971' border='0' cellspacing='0' cellpadding='0'>\
            				<tr>\
            					<td height='61'>&nbsp;<img src='http://ad1.dmcmedia.co.kr/js.dmc/adtype=1&site=DMC&pp=P869&sz=1x1' width=1 height=1></td>\
           					</tr>\
            				<tr>\
            					<td align='center' bgcolor='#FFFFFF'>\
            						<table border='0' cellspacing='0' cellpadding='0'>\
                                    	<tr>\
                                    		<td width='110'>&nbsp;</td>\
                                    		<td width='673'>\
                                    			<table width='673' border='0' cellspacing='0' cellpadding='0'>\
                                                	<tr>\
                                                		<td colspan='2'>\
														<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0' width='673' height='46' id='main'>\
														<param name=wmode value='transparent' />\
														<param name=movie value='"+ocburl+"/fla/footer_sub_familysite.swf' />\
														<param name=quality value=high /><param name=allowScriptAccess value=always>\
														<embed src='"+ocburl+"/fla/footer_sub_familysite.swf' quality='high' wmode='transparent' type='application/x-shockwave-flash' pluginspage='http://www.macromedia.com/shockwave/download/index.cgi?p1_prod_version=shockwaveflash' width='673' height='46'>\
														</embed>\
														</object>\
                                               			</td>\
                                               		</tr>\
                                                	<tr>\
                                                		<td width='116' rowspan='2'><a href='http://www.skmnc.com' target='_blank'><img src='"+ocburl+"/img/footer_newlogo.jpg' width='116' height='71'></a></td>\
                                                		<td width='557'>\
														<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0' width='557' height='26' id='main'>\
														<param name=wmode value='transparent' />\
														<param name=movie value='"+ocburl+"/fla/footer_agreement.swf' />\
														<param name=quality value=high /><param name=allowScriptAccess value=always>\
														<embed src='"+ocburl+"/fla/footer_agreement.swf' quality='high' wmode='transparent' type='application/x-shockwave-flash' pluginspage='http://www.macromedia.com/shockwave/download/index.cgi?p1_prod_version=shockwaveflash' width='557' height='26'>\
														</embed>\
														</object>\
                                               			</td>\
                                               		</tr>\
                                                	<tr>\
                                                		<td><img src='"+ocburl+"/img/footer_newcopyright.jpg' width='557' height='45'></td>\
                                               		</tr>\
                                                	<tr align='right' bgcolor='#FFFFFF'>\
                                                		<td colspan='2'>\
															<TABLE>\
                            									<TR>\
                            										<TD style='CURSOR:hand;' onclick='MM_showHideLayers(\"gnb_sub_menu\",\"\",\"show\");MM_showHideLayers(\"gnb_dsub_menu\",\"\",\"show\");'><img src='"+ocburl+"/img/footer_rekated.jpg' width='107' border='0'></TD>\
                           										</TR>\
                            								</TABLE>\
														</td>\
                                               		</tr>\
                                                	<tr align='right' bgcolor='#FFFFFF'>\
                                                		<td height='30' colspan='2'></td>\
                                               		</tr>\
                                                	</table>\
                                    		</td>\
                                    		<td>\
                                    			<DIV id=gnb_sub_menu onmouseleave='MM_showHideLayers(\"gnb_sub_menu\",\"\",\"hide\");' style='Z-INDEX: 100; VISIBILITY: hidden; POSITION: relative; left: -113px; top: 7px; height: 100px;'>\
                                                	<TABLE width='113'>\
                                                		<TR>\
                                                			<TD width='165'> <a onMouseOver='bt(\"leftm0101\",\""+ocburl+"/img/footer_related01on.jpg\");' onMouseOut='bt(\"leftm0101\",\""+ocburl+"/img/footer_related01off.jpg\");' target='_blank' href='http://www.sk.com/'> <img id=leftm0101 src='"+ocburl+"/img/footer_related01off.jpg' border=0 name=leftm0101></a><BR>\
                                                    				<A onmouseover='bt(\"leftm0102\",\""+ocburl+"/img/footer_related02on.jpg\");' onmouseout='bt(\"leftm0102\",\""+ocburl+"/img/footer_related02off.jpg\");' target='_blank' href='http://www.skenergy.com/'> <IMG id=leftm0102 src='"+ocburl+"/img/footer_related02off.jpg' border=0 name=leftm0102></A><BR>\
                                                    				<A onmouseover='bt(\"leftm0103\",\""+ocburl+"/img/footer_related03on.jpg\");' onmouseout='bt(\"leftm0103\",\""+ocburl+"/img/footer_related03off.jpg\");'	 target='_blank' href='http://www.skdutyfree.com/'> <IMG id=leftm0103 src='"+ocburl+"/img/footer_related03off.jpg' border=0 name=leftm0103></A><BR>\
                                                    				<A onmouseover='bt(\"leftm0104\",\""+ocburl+"/img/footer_related04on.jpg\");' onmouseout='bt(\"leftm0104\",\""+ocburl+"/img/footer_related04off.jpg\");'	 target='_blank' href='http://www.jeju-utd.com/'> <IMG id=leftm0104 src='"+ocburl+"/img/footer_related04off.jpg' border=0 name=leftm0104></A><BR>\
                                                    				<A onmouseover='bt(\"leftm0105\",\""+ocburl+"/img/footer_related05on.jpg\");' onmouseout='bt(\"leftm0105\",\""+ocburl+"/img/footer_related05off.jpg\");' target='_blank' href='http://www.speedmate.com/'> <IMG id=leftm0105 src='"+ocburl+"/img/footer_related05off.jpg' border=0 name=leftm0105></A><BR>\
                                                				</td>\
                                               			</tr>\
                                                		</TABLE>\
                                   				</div>\
                                    		</td>\
                                   		</tr>\
                                    	</table>\
           						</td>\
           					</tr>\
            				</table>\
           			</td>\
           		</tr>\
            	</table>\
		</TD>\
		<TD><IMG src='"+ocburl+"/img/spacer.gif'></TD>\
	</TR>\
</TABLE>");
document.write("<script>s.pageName='';var s_code=s.t();if(s_code)document.write(s_code);</script>");
}

function mainfooter() {
	document.write("<TABLE width='100%' border='0' cellpadding='0' cellspacing='0'>\
	<TR>\
		<TD>&nbsp;<img src='http://ad1.dmcmedia.co.kr/js.dmc/adtype=1&site=DMC&pp=P869&sz=1x1' width=1 height=1></TD>\
		<TD width='971'>\
			<TABLE border='0' cellspacing='0' cellpadding='0'>\
            	<TR>\
            		<TD width='802'>\
            			<TABLE width='802' border='0' cellspacing='0' cellpadding='0'>\
            				<TR>\
            					<TD height='1' colspan='4'></TD>\
           					</TR>\
            				<TR bgcolor='FACECF'>\
            					<TD height='1' colspan='4'></TD>\
           					</TR>\
            				<TR>\
            					<TD colspan='4'>\
									<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0' width='802' height='25' id='main'>\
									<param name=wmode value='transparent' />\
									<param name=movie value='/fla/footer_familysite.swf' />\
									<param name=quality value=high /><param name=allowScriptAccess value=always>\
									<embed src='/fla/footer_familysite.swf' quality=high wmode='transparent' type='application/x-shockwave-flash' pluginspage='http://www.macromedia.com/shockwave/download/index.cgi?p1_prod_version=shockwaveflash' width='802' height='25'>\
									</embed>\
									</object>\
           						</TD>\
           					</TR>\
            				<TR bgcolor='FACECF'>\
            					<TD height='1' colspan='4'></TD>\
           					</TR>\
            				<TR>\
            					<TD width='18' height='14' rowspan='2'></TD>\
            					<TD width='116' rowspan='2'><a href='http://www.skmnc.com' target='_blank'><IMG src='/img/footer_newlogo.jpg' width='116' height='71'></a></TD>\
            					<TD width='557'>\
									<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0' width='557' height='26' id='main'>\
									<param name=wmode value='transparent' />\
									<param name=movie value='/fla/footer_agreement.swf' />\
									<param name=quality value=high /><param name=allowScriptAccess value=always>\
									<embed src='/fla/footer_agreement.swf' quality=high wmode='transparent' type='application/x-shockwave-flash' pluginspage='http://www.macromedia.com/shockwave/download/index.cgi?p1_prod_version=shockwaveflash' width='557' height='26'>\
									</embed>\
									</object>\
           						</TD>\
            					<TD style='padding:11 12 0 0' width='144' rowspan='2' align='right' valign='top'>\
            						<TABLE>\
            							<TR>\
            								<TD style=CURSOR:hand; onClick='MM_showHideLayers(\"gnb_sub_menu\",\"\",\"show\");MM_showHideLayers(\"gnb_dsub_menu\",\"\",\"show\");'><IMG src='/img/footer_rekated.jpg' width='107' height='17' border='0'></TD>\
           								</TR>\
            							</TABLE>\
           						</TD>\
           					</TR>\
            				<TR>\
            					<TD><IMG src='/img/footer_newcopyright.jpg' width='557' height='45'></TD>\
           					</TR>\
            				<TR>\
            					<TD height='30' colspan='4'></TD>\
           					</TR>\
            				</TABLE>\
           			</TD>\
            		<TD width='123'>\
            			<DIV id=gnb_sub_menu ONMOUSELEAVE='MM_showHideLayers(\"gnb_sub_menu\",\"\",\"hide\");' style='Z-INDEX:100; VISIBILITY: hidden; POSITION: relative; left: -125px; top: -60px; height: 100px;'>\
            				<TABLE height='111'>\
            					<TR>\
            						<TD> <A onMouseOver='bt(\"leftm0101\",\"/img/footer_related01on.jpg\");' onMouseOut='bt(\"leftm0101\",\"/img/footer_related01off.jpg\");' target='_blank' href='http://www.sk.com/'> <IMG id=leftm0101 src='/img/footer_related01off.jpg' border=0 name=leftm0101></A><BR>\
                							<A onMouseOver='bt(\"leftm0102\",\"/img/footer_related02on.jpg\");' onMouseOut='bt(\"leftm0102\",\"/img/footer_related02off.jpg\");' target='_blank' href='http://www.skenergy.com/'> <IMG id=leftm0102 src='/img/footer_related02off.jpg' border=0 name=leftm0102></A><BR>\
                							<A onMouseOver='bt(\"leftm0103\",\"/img/footer_related03on.jpg\");' onMouseOut='bt(\"leftm0103\",\"/img/footer_related03off.jpg\");'	 target='_blank' href='http://www.skdutyfree.com/'> <IMG id=leftm0103 src='/img/footer_related03off.jpg' border=0 name=leftm0103></A><BR>\
                							<A onMouseOver='bt(\"leftm0104\",\"/img/footer_related04on.jpg\");' onMouseOut='bt(\"leftm0104\",\"/img/footer_related04off.jpg\");'	 target='_blank' href='http://www.jeju-utd.com/'> <IMG id=leftm0104 src='/img/footer_related04off.jpg' border=0 name=leftm0104></A><BR>\
                							<A onMouseOver='bt(\"leftm0105\",\"/img/footer_related05on.jpg\");' onMouseOut='bt(\"leftm0105\",\"/img/footer_related05off.jpg\");' target='_blank' href='http://www.speedmate.com/'> <IMG id=leftm0105 src='/img/footer_related05off.jpg' border=0 name=leftm0105></A><BR>\
            							</TD>\
           						</TR>\
            					</TABLE>\
           				</DIV>\
            			</TD>\
           		</TR>\
            	</TABLE>\
		</TD>\
		<TD>&nbsp;</TD>\
	</TR>\
</TABLE>");
}

function mainfooter_bak() {
	document.write(" 	<table border='0' cellspacing='0' cellpadding='0'>\
                	<tr>\
                		<td width='803'>\
											<table width='802' border='0' cellspacing='0' cellpadding='0'>\
                            	<tr>\
                            		<td height='30' colspan='4'>&nbsp;</td>\
                           		</tr>\
                            	<tr bgcolor='FACECF'>\
                            		<td height='1' colspan='4'></td>\
                           		</tr>\
                            	<tr>\
                            		<td colspan='4'>\
																		<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0' width='802' height='25' id='main'>\
																		<param name=wmode value='transparent' />\
																		<param name=movie value='/fla/footer_familysite.swf' />\
																		<param name=quality value=high /><param name=allowScriptAccess value=always>\
																		<embed src='/fla/footer_familysite.swf' quality=high wmode='transparent' type='application/x-shockwave-flash' pluginspage='http://www.macromedia.com/shockwave/download/index.cgi?p1_prod_version=shockwaveflash' width='802' height='25'>\
																		</embed>\
																		</object>\
                           			</td>\
                           		</tr>\
                            	<tr bgcolor='FACECF'>\
                            		<td height='1' colspan='4'></td>\
                           		</tr>\
                            	<tr>\
                            		<td width='19' height='14' rowspan='2'></td>\
                            		<td width='83' rowspan='2'><img src='/img/footer_logo.jpg' width='83' height='71'></td>\
                            		<td width='557'>\
																		<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0' width='557' height='26' id='main'>\
																		<param name=wmode value='transparent' />\
																		<param name=movie value='/fla/footer_agreement.swf' />\
																		<param name=quality value=high /><param name=allowScriptAccess value=always>\
																		<embed src='/fla/footer_agreement.swf' quality=high wmode='transparent' type='application/x-shockwave-flash' pluginspage='http://www.macromedia.com/shockwave/download/index.cgi?p1_prod_version=shockwaveflash' width='557' height='26'>\
																		</embed>\
																		</object>\
                            		</td>\
                            		<td width='144' rowspan='2' align='right' valign='top' style='padding:11 12 0 0' >\
                            			<TABLE>\
                            				<TR>\
                            					<TD style=CURSOR:hand; onclick='MM_showHideLayers('gnb_sub_menu','','show');MM_showHideLayers('gnb_dsub_menu','','show');'><img src='/img/footer_rekated.jpg' width='107' height='17' border='0'></TD>\
                           					</TR>\
                            				</TABLE>\
                           			</td>\
                           		</tr>\
                            	<tr>\
                            		<td width='557'><img src='/img/footer_copyright.jpg' width='557' height='45'></td>\
                           		</tr>\
                            	<tr>\
                            		<td height='30' colspan='4'></td>\
                           		</tr>\
                            	</table>\
                		</td>\
                		<td width='118'>\
            			<DIV id=gnb_sub_menu ONMOUSELEAVE='MM_showHideLayers(\"gnb_sub_menu\",\"\",\"hide\");' style='Z-INDEX:100; VISIBILITY: hidden; POSITION: relative; left: -125px; top: -39px; height: 100px;'>\
            				<TABLE height='111'>\
            					<TR>\
            						<TD> <A onMouseOver='bt(\"leftm0101\",\"/img/footer_related01on.jpg\");' onMouseOut='bt(\"leftm0101\",\"/img/footer_related01off.jpg\");' target='_blank' href='http://www.sk.com/'> <IMG id=leftm0101 src='/img/footer_related01off.jpg' border=0 name=leftm0101></A><BR>\
                							<A onMouseOver='bt(\"leftm0102\",\"/img/footer_related02on.jpg\");' onMouseOut='bt(\"leftm0102\",\"/img/footer_related02off.jpg\");' target='_blank' href='http://www.skenergy.com/'> <IMG id=leftm0102 src='/img/footer_related02off.jpg' border=0 name=leftm0102></A><BR>\
                							<A onMouseOver='bt(\"leftm0103\",\"/img/footer_related03on.jpg\");' onMouseOut='bt(\"leftm0103\",\"/img/footer_related03off.jpg\");'	 target='_blank' href='http://www.skdutyfree.com/'> <IMG id=leftm0103 src='/img/footer_related03off.jpg' border=0 name=leftm0103></A><BR>\
                							<A onMouseOver='bt(\"leftm0104\",\"/img/footer_related04on.jpg\");' onMouseOut='bt(\"leftm0104\",\"/img/footer_related04off.jpg\");'	 target='_blank' href='http://www.jeju-utd.com/'> <IMG id=leftm0104 src='/img/footer_related04off.jpg' border=0 name=leftm0104></A><BR>\
                							<A onMouseOver='bt(\"leftm0105\",\"/img/footer_related05on.jpg\");' onMouseOut='bt(\"leftm0105\",\"/img/footer_related05off.jpg\");' target='_blank' href='http://www.speedmate.com/'> <IMG id=leftm0105 src='/img/footer_related05off.jpg' border=0 name=leftm0105></A><BR>\
            							</TD>\
           						</TR>\
            					</TABLE>\
           				</DIV>\
									</td>\
               		</tr>\
                	</table> ");
}

function footer_ccm() {
document.write("<TABLE width='100%' border='0' cellpadding='0' cellspacing='0' background='"+ocburl+"/img/bgCopyright_01.gif'>\
	<TR>\
		<TD><IMG src='"+ocburl+"/img/spacer.gif'></TD>\
		<TD width='971'>\
			<table width='971' border='0' cellpadding='0' cellspacing='0'>\
            	<tr>\
            		<td background='"+ocburl+"/img/copyright_01.gif'>\
            			<table width='971' border='0' cellspacing='0' cellpadding='0'>\
            				<tr>\
            					<td height='61'>&nbsp;<img src='http://ad1.dmcmedia.co.kr/js.dmc/adtype=1&site=DMC&pp=P869&sz=1x1' width=1 height=1></td>\
           					</tr>\
            				<tr>\
            					<td align='center' bgcolor='#FFFFFF'>\
            						<table border='0' cellspacing='0' cellpadding='0'>\
                                    	<tr>\
                                    		<td width='110'>&nbsp;</td>\
                                    		<td width='673'>\
                                    			<table width='673' border='0' cellspacing='0' cellpadding='0'>\
                                                	<tr>\
                                                		<td colspan='2'>\
														<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0' width='673' height='46' id='main'>\
														<param name=wmode value='transparent' />\
														<param name=movie value='"+ocburl+"/fla/footer_sub_familysite.swf' />\
														<param name=quality value=high /><param name=allowScriptAccess value=always>\
														<embed src='"+ocburl+"/fla/footer_sub_familysite.swf' quality='high' wmode='transparent' type='application/x-shockwave-flash' pluginspage='http://www.macromedia.com/shockwave/download/index.cgi?p1_prod_version=shockwaveflash' width='673' height='46'>\
														</embed>\
														</object>\
                                               			</td>\
                                               		</tr>\
                                                	<tr>\
                                                		<td width='116' rowspan='2'><a href='http://www.skmnc.com' target='_blank'><img src='"+ocburl+"/img/footer_newlogo.jpg' width='116' height='71'></a></td>\
                                                		<td width='557'>\
														<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0' width='557' height='26' id='main'>\
														<param name=wmode value='transparent' />\
														<param name=movie value='"+ocburl+"/fla/footer_agreement.swf' />\
														<param name=quality value=high /><param name=allowScriptAccess value=always>\
														<embed src='"+ocburl+"/fla/footer_agreement.swf' quality='high' wmode='transparent' type='application/x-shockwave-flash' pluginspage='http://www.macromedia.com/shockwave/download/index.cgi?p1_prod_version=shockwaveflash' width='557' height='26'>\
														</embed>\
														</object>\
                                               			</td>\
                                               		</tr>\
                                                	<tr>\
                                                		<td><img src='"+ocburl+"/img/footer_newcopyright.jpg' width='557' height='45'></td>\
                                               		</tr>\
                                                	<tr align='right' bgcolor='#FFFFFF'>\
                                                		<td colspan='2'>\
															<TABLE>\
                            									<TR>\
                            										<TD style='CURSOR:hand;' onclick='MM_showHideLayers(\"gnb_sub_menu\",\"\",\"show\");MM_showHideLayers(\"gnb_dsub_menu\",\"\",\"show\");'><img src='"+ocburl+"/img/footer_rekated.jpg' width='107' border='0'></TD>\
                           										</TR>\
                            								</TABLE>\
														</td>\
                                               		</tr>\
                                                	<tr align='right' bgcolor='#FFFFFF'>\
                                                		<td height='30' colspan='2'></td>\
                                               		</tr>\
                                                	</table>\
                                    		</td>\
                                    		<td>\
                                    			<DIV id=gnb_sub_menu onmouseleave='MM_showHideLayers(\"gnb_sub_menu\",\"\",\"hide\");' style='Z-INDEX: 100; VISIBILITY: hidden; POSITION: relative; left: -113px; top: 7px; height: 100px;'>\
                                                	<TABLE width='113'>\
                                                		<TR>\
                                                			<TD width='165'> <a onMouseOver='bt(\"leftm0101\",\""+ocburl+"/img/footer_related01on.jpg\");' onMouseOut='bt(\"leftm0101\",\""+ocburl+"/img/footer_related01off.jpg\");' target='_blank' href='http://www.sk.com/'> <img id=leftm0101 src='"+ocburl+"/img/footer_related01off.jpg' border=0 name=leftm0101></a><BR>\
                                                    				<A onmouseover='bt(\"leftm0102\",\""+ocburl+"/img/footer_related02on.jpg\");' onmouseout='bt(\"leftm0102\",\""+ocburl+"/img/footer_related02off.jpg\");' target='_blank' href='http://www.skenergy.com/'> <IMG id=leftm0102 src='"+ocburl+"/img/footer_related02off.jpg' border=0 name=leftm0102></A><BR>\
                                                    				<A onmouseover='bt(\"leftm0103\",\""+ocburl+"/img/footer_related03on.jpg\");' onmouseout='bt(\"leftm0103\",\""+ocburl+"/img/footer_related03off.jpg\");'	 target='_blank' href='http://www.skdutyfree.com/'> <IMG id=leftm0103 src='"+ocburl+"/img/footer_related03off.jpg' border=0 name=leftm0103></A><BR>\
                                                    				<A onmouseover='bt(\"leftm0104\",\""+ocburl+"/img/footer_related04on.jpg\");' onmouseout='bt(\"leftm0104\",\""+ocburl+"/img/footer_related04off.jpg\");'	 target='_blank' href='http://www.jeju-utd.com/'> <IMG id=leftm0104 src='"+ocburl+"/img/footer_related04off.jpg' border=0 name=leftm0104></A><BR>\
                                                    				<A onmouseover='bt(\"leftm0105\",\""+ocburl+"/img/footer_related05on.jpg\");' onmouseout='bt(\"leftm0105\",\""+ocburl+"/img/footer_related05off.jpg\");' target='_blank' href='http://www.speedmate.com/'> <IMG id=leftm0105 src='"+ocburl+"/img/footer_related05off.jpg' border=0 name=leftm0105></A><BR>\
                                                				</td>\
                                               			</tr>\
                                                		</TABLE>\
                                   				</div>\
                                    		</td>\
                                   		</tr>\
                                    	</table>\
           						</td>\
           					</tr>\
            				</table>\
           			</td>\
           		</tr>\
            	</table>\
		</TD>\
		<TD><IMG src='"+ocburl+"/img/spacer.gif'></TD>\
	</TR>\
</TABLE>");
}

/// Æ÷ÀÎÆ® ½×±â¿ë Footer

function mCopy() {
	document.write("<TABLE width='100%' border='0' cellpadding='0' cellspacing='0'>\
	<TR>\
		<TD background='"+ocburl+"/event/img/footer_bg.jpg'>&nbsp;</TD>\
		<TD background='"+ocburl+"/event/img/footer_bg.jpg' width='971'>\
			<TABLE border='0' cellspacing='0' cellpadding='0'>\
            	<TR>\
            		<TD width='802'>\
            			<TABLE width='802' border='0' cellspacing='0' cellpadding='0'>\
            				<TR>\
            					<TD height='41' colspan='4'><img src='http://ad1.dmcmedia.co.kr/js.dmc/adtype=1&site=DMC&pp=P869&sz=1x1' width=1 height=1></TD>\
           					</TR>\
            				<TR bgcolor='E8E8E8'>\
            					<TD height='1' colspan='4'></TD>\
           					</TR>\
            				<TR>\
            					<TD colspan='4'>\
									<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0' width='802' height='25' id='main'>\
									<param name=wmode value='transparent' />\
									<param name=movie value='"+ocburl+"/fla/footer_familysite.swf' />\
									<param name=quality value=high /><param name=allowScriptAccess value=always>\
									<embed src='"+ocburl+"/fla/footer_familysite.swf' quality=high wmode='transparent' type='application/x-shockwave-flash' pluginspage='http://www.macromedia.com/shockwave/download/index.cgi?p1_prod_version=shockwaveflash' width='802' height='25'>\
									</embed>\
									</object>\
           						</TD>\
           					</TR>\
            				<TR bgcolor='E8E8E8'>\
            					<TD height='1' colspan='4'></TD>\
           					</TR>\
            				<TR>\
            					<TD width='18' height='14' rowspan='2'></TD>\
            					<TD width='83' rowspan='2'><a href='http://www.skmnc.com' target='_blank'><IMG src='"+ocburl+"/img/footer_newlogo.jpg' width='116' height='71'></a></TD>\
            					<TD width='557'>\
									<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0' width='557' height='26' id='main'>\
									<param name=wmode value='transparent' />\
									<param name=movie value='"+ocburl+"/fla/footer_agreement.swf' />\
									<param name=quality value=high /><param name=allowScriptAccess value=always>\
									<embed src='"+ocburl+"/fla/footer_agreement.swf' quality=high wmode='transparent' type='application/x-shockwave-flash' pluginspage='http://www.macromedia.com/shockwave/download/index.cgi?p1_prod_version=shockwaveflash' width='557' height='26'>\
									</embed>\
									</object>\
           						</TD>\
            					<TD style='padding:11 12 0 0' width='144' rowspan='2' align='right' valign='top'>\
            						<TABLE>\
            							<TR>\
            								<TD style=CURSOR:hand; onClick='MM_showHideLayers(\"gnb_sub_menu\",\"\",\"show\");MM_showHideLayers(\"gnb_dsub_menu\",\"\",\"show\");'><IMG src='"+ocburl+"/img/footer_rekated.jpg' width='107' height='17' border='0'></TD>\
           								</TR>\
            							</TABLE>\
           						</TD>\
           					</TR>\
            				<TR>\
            					<TD><IMG src='"+ocburl+"/img/footer_newcopyright.jpg' width='557' height='45'></TD>\
           					</TR>\
            				<TR>\
            					<TD height='30' colspan='4'></TD>\
           					</TR>\
            				</TABLE>\
           			</TD>\
            		<TD width='123'>\
            			<DIV id=gnb_sub_menu ONMOUSELEAVE='MM_showHideLayers(\"gnb_sub_menu\",\"\",\"hide\");' style='Z-INDEX:100; VISIBILITY: hidden; POSITION: relative; left: -125px; top: -39px; height: 100px;'>\
            				<TABLE height='111'>\
            					<TR>\
            						<TD> <A onMouseOver='bt(\"leftm0101\",\""+ocburl+"/img/footer_related01on.jpg\");' onMouseOut='bt(\"leftm0101\",\""+ocburl+"/img/footer_related01off.jpg\");' target='_blank' href='http://www.sk.com/'> <IMG id=leftm0101 src='"+ocburl+"/img/footer_related01off.jpg' border=0 name=leftm0101></A><BR>\
                							<A onMouseOver='bt(\"leftm0102\",\""+ocburl+"/img/footer_related02on.jpg\");' onMouseOut='bt(\"leftm0102\",\""+ocburl+"/img/footer_related02off.jpg\");' target='_blank' href='http://www.skenergy.com/'> <IMG id=leftm0102 src='"+ocburl+"/img/footer_related02off.jpg' border=0 name=leftm0102></A><BR>\
                							<A onMouseOver='bt(\"leftm0103\",\""+ocburl+"/img/footer_related03on.jpg\");' onMouseOut='bt(\"leftm0103\",\""+ocburl+"/img/footer_related03off.jpg\");'	 target='_blank' href='http://www.skdutyfree.com/'> <IMG id=leftm0103 src='"+ocburl+"/img/footer_related03off.jpg' border=0 name=leftm0103></A><BR>\
                							<A onMouseOver='bt(\"leftm0104\",\""+ocburl+"/img/footer_related04on.jpg\");' onMouseOut='bt(\"leftm0104\",\""+ocburl+"/img/footer_related04off.jpg\");'	 target='_blank' href='http://www.jeju-utd.com/'> <IMG id=leftm0104 src='"+ocburl+"/img/footer_related04off.jpg' border=0 name=leftm0104></A><BR>\
                							<A onMouseOver='bt(\"leftm0105\",\""+ocburl+"/img/footer_related05on.jpg\");' onMouseOut='bt(\"leftm0105\",\""+ocburl+"/img/footer_related05off.jpg\");' target='_blank' href='http://www.speedmate.com/'> <IMG id=leftm0105 src='"+ocburl+"/img/footer_related05off.jpg' border=0 name=leftm0105></A><BR>\
            							</TD>\
           						</TR>\
            					</TABLE>\
           				</DIV>\
            			</TD>\
           		</TR>\
            	</TABLE>\
		</TD>\
		<TD background='"+ocburl+"/event/img/footer_bg.jpg'>&nbsp;</TD>\
	</TR>\
</TABLE>");
}

function foxymain(dNum) {
	
	//¼¼·Î»çÀÌÁî´Â °­Á¦·Î ÁÙ¿©µµ ÀÌ¹ÌÁö ºñÀ² º¯È­ ¾øÀ½, hNum=2Depth,  sNum=3Depth
	document.write("\
	<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' allowScriptAccess='always' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0' width='971' height='74'>\
	<param name='movie' value='/fla/cashfoxyNavi.swf'>\
	<param name='quality' value='high'>\
		<param name='wmode' VALUE='transparent'><param name='allowScriptAccess' value='always'>\
	<param name='flashvars' VALUE='dNum="+dNum+"'>\
	<embed src='/fla/cashfoxyNavi.swf' quality='high' pluginspage='http://www.macromedia.com/go/getflashplayer' type='application/x-shockwave-flash' width='971' height='74'>\
	</embed></object>");
}

function foxypremiummenu(hNum, sNum, dNum, login, vip) {
	//alert("hNum="+hNum+"sNum="+sNum+"dNum="+dNum+"login="+login+"vip="+vip);
	//¼¼·Î»çÀÌÁî´Â °­Á¦·Î ÁÙ¿©µµ ÀÌ¹ÌÁö ºñÀ² º¯È­ ¾øÀ½, hNum=2Depth,  sNum=3Depth
	document.write("\
	<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' allowScriptAccess='always' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0' width='168' height='220'>\
	<param name='movie' value='/fla/cashfoxyLeft_plus.swf'>\
	<param name='quality' value='high'>\
	<param name='wmode' VALUE='transparent'><param name='allowScriptAccess' value='always'>\
	<param name='flashvars' VALUE='hNum="+hNum+"&sNum="+sNum+"&login="+login+"&vip="+vip+"'>\
	<embed src='/fla/cashfoxyLeft_plus.swf' quality='high' pluginspage='http://www.macromedia.com/go/getflashplayer' type='application/x-shockwave-flash' width='168' height='220'>\
	</embed></object>");
}

function foxyhottrendmenu(hNum, sNum) {
//	alert("hNum="+hNum+"sNum="+sNum);
	//¼¼·Î»çÀÌÁî´Â °­Á¦·Î ÁÙ¿©µµ ÀÌ¹ÌÁö ºñÀ² º¯È­ ¾øÀ½, hNum=2Depth,  sNum=3Depth
	document.write("\
	<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' allowScriptAccess='always' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0' width='168' height='170'>\
	<param name='movie' value='/fla/cashfoxyLeft_hot.swf'>\
	<param name='quality' value='high'>\
	<param name='wmode' VALUE='transparent'><param name='allowScriptAccess' value='always'>\
	<param name='flashvars' VALUE='hNum="+hNum+"&sNum="+sNum+"'>\
	<embed src='/fla/cashfoxyLeft_hot.swf' quality='high' pluginspage='http://www.macromedia.com/go/getflashplayer' type='application/x-shockwave-flash' width='168' height='170'>\
	</embed></object>");
}
function foxymembermenu(hNum, sNum) {
//	alert("hNum="+hNum+"sNum="+sNum);
	//¼¼·Î»çÀÌÁî´Â °­Á¦·Î ÁÙ¿©µµ ÀÌ¹ÌÁö ºñÀ² º¯È­ ¾øÀ½, hNum=2Depth,  sNum=3Depth
	document.write("\
	<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' allowScriptAccess='always' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0' width='168' height='52'>\
	<param name='movie' value='/fla/cashfoxyLeft_mem.swf'>\
	<param name='quality' value='high'><param name='allowScriptAccess' value='always'>\
	<param name='wmode' VALUE='transparent'>\
	<param name='flashvars' VALUE='hNum="+hNum+"&sNum="+sNum+"'>\
	<embed src='/fla/cashfoxyLeft_mem.swf' quality='high' pluginspage='http://www.macromedia.com/go/getflashplayer' type='application/x-shockwave-flash' width='168' height='52'>\
	</embed></object>");
}

function foxyspecial(hNum, sNum) {
//	alert("hNum="+hNum+"sNum="+sNum);
	//¼¼·Î»çÀÌÁî´Â °­Á¦·Î ÁÙ¿©µµ ÀÌ¹ÌÁö ºñÀ² º¯È­ ¾øÀ½, hNum=2Depth,  sNum=3Depth
	document.write("\
	<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' allowScriptAccess='always' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0' width='168' height='100'>\
	<param name='movie' value='/fla/cashfoxyLeft_special.swf'>\
	<param name='quality' value='high'><param name='allowScriptAccess' value='always'>\
	<param name='wmode' VALUE='transparent'>\
	<param name='flashvars' VALUE='hNum="+hNum+"&sNum="+sNum+"'>\
	<embed src='/fla/cashfoxyLeft_special.swf' quality='high' pluginspage='http://www.macromedia.com/go/getflashplayer' type='application/x-shockwave-flash' width='168' height='100'>\
	</embed></object>");
}
function flash_mode(s,d,w,h,t){
        return "<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0' width="+w+" height="+h+" id="+d+"><param name=wmode value="+t+" /><param name=movie value="+s+" /><param name=allowScriptAccess value=always /><param name=quality value=high /><embed src="+s+" quality=high wmode="+t+" type='application/x-shockwave-flash' pluginspage='http://www.macromedia.com/shockwave/download/index.cgi?p1_prod_version=shockwaveflash' width="+w+" height="+h+"></embed></object>";
}

function documentwrite(src){
        document.write(src);
}

function cashfoxyNaviTop(url){
        alert("Cashfoxy¸Þ´º_¸ÞÀÎ"+url);
}
function cashfoxyNaviSub(url){
        alert("Cashfoxy¸Þ´º_¼­ºê"+url);
}

//////////////////¿È´ÏÃß¾î/////////////////////
/* SiteCatalyst code version: H.20.3.
Copyright 1997-2009 Omniture, Inc. More info available at
http://www.omniture.com */


var s_account="skmncokcashbag";   // Report Suite ID
var s=s_gi(s_account)
/************************** CONFIG SECTION **************************/

/* You may add or alter any code config here. */
s.charSet="UTF-8"
/* Conversion Config */
s.currencyCode="KRW"
/* Link Tracking Config */
s.trackDownloadLinks=true
s.trackExternalLinks=true
s.trackInlineStats=true
s.linkDownloadFileTypes="exe,zip,wav,mp3,mov,mpg,avi,wmv,doc,pdf,xls"
s.linkInternalFilters="javascript:,okcashbag.com"
s.linkLeaveQueryString=false
s.linkTrackVars="None"
s.linkTrackEvents="None"

/* Plugin Config */
s.usePlugins=true
function s_doPlugins(s) {
	/* Add calls to plugins here */
/* External Campaign */
if(!s.campaign)
  s.campaign=s.getQueryParam('cmpid'); 	// Parameter may be different from cmpid
s.campaign=s.getValOnce(s.campaign,"s_campaign",0);
if(!s.prop2) s.prop2=s.getQueryParam('EVENTGROUP');
if(!s.prop3) s.prop3=s.getQueryParam('EVENTID');
if(!s.prop4) s.prop4=s.getQueryParam('mcht_name');
if(!s.prop5) s.prop5=s.getQueryParam('COMPANYNAME');
if(!s.prop6) s.prop6=s.getQueryParam('co_code');
if(s.prop1) s.eVar1=s.prop1;
if(s.prop2) s.eVar2=s.prop2;
if(s.prop3) s.eVar3=s.prop3;
if(s.prop4) s.eVar4=s.prop4;
if(s.prop5) s.eVar5=s.prop5;
if(s.prop6) s.eVar6=s.prop6;
if(s.events) {s.events=s.events+",envet3"} else {s.events="event3"}

}

s.doPlugins=s_doPlugins

/************************** PLUGINS SECTION *************************/
/* You may insert any plugins you wish to use here.                 */
/*
 * Plugin Utility: apl v1.1
 */
s.apl=new Function("L","v","d","u",""
+"var s=this,m=0;if(!L)L='';if(u){var i,n,a=s.split(L,d);for(i=0;i<a."
+"length;i++){n=a[i];m=m||(u==1?(n==v):(n.toLowerCase()==v.toLowerCas"
+"e()));}}if(!m)L=L?L+d+v:v;return L");

/*
 * Utility Function: split v1.5 - split a string (JS 1.0 compatible)
 */
s.split=new Function("l","d",""
+"var i,x=0,a=new Array;while(l){i=l.indexOf(d);i=i>-1?i:l.length;a[x"
+"++]=l.substring(0,i);l=l.substring(i+d.length);}return a");

/*
 * Plugin: getQueryParam 2.1 - return query string parameter(s)
 */
s.getQueryParam=new Function("p","d","u",""
+"var s=this,v='',i,t;d=d?d:'';u=u?u:(s.pageURL?s.pageURL:s.wd.locati"
+"on);if(u=='f')u=s.gtfs().location;while(p){i=p.indexOf(',');i=i<0?p"
+".length:i;t=s.p_gpv(p.substring(0,i),u+'');if(t)v+=v?d+t:t;p=p.subs"
+"tring(i==p.length?i:i+1)}return v");
s.p_gpv=new Function("k","u",""
+"var s=this,v='',i=u.indexOf('?'),q;if(k&&i>-1){q=u.substring(i+1);v"
+"=s.pt(q,'&','p_gvf',k)}return v");
s.p_gvf=new Function("t","k",""
+"if(t){var s=this,i=t.indexOf('='),p=i<0?t:t.substring(0,i),v=i<0?'T"
+"rue':t.substring(i+1);if(p.toLowerCase()==k.toLowerCase())return s."
+"epa(v)}return ''");

/*
 * Plugin: getValOnce 0.2 - get a value once per session or number of days
 */
s.getValOnce=new Function("v","c","e",""
+"var s=this,k=s.c_r(c),a=new Date;e=e?e:0;if(v){a.setTime(a.getTime("
+")+e*86400000);s.c_w(c,v,e?a:0);}return v==k?'':v");


/* WARNING: Changing any of the below variables will cause drastic
changes to how your visitor data is collected.  Changes should only be
made when instructed to do so by your account manager.*/
s.visitorNamespace="skmarketingandcompany"
s.trackingServer="skmarketingandcompany.122.2o7.net"

/************* DO NOT ALTER ANYTHING BELOW THIS LINE ! **************/
var s_code='',s_objectID;function s_gi(un,pg,ss){var c="s._c='s_c';s.wd=window;if(!s.wd.s_c_in){s.wd.s_c_il=new Array;s.wd.s_c_in=0;}s._il=s.wd.s_c_il;s._in=s.wd.s_c_in;s._il[s._in]=s;s.wd.s_c_in++;s"
+".an=s_an;s.cls=function(x,c){var i,y='';if(!c)c=this.an;for(i=0;i<x.length;i++){n=x.substring(i,i+1);if(c.indexOf(n)>=0)y+=n}return y};s.fl=function(x,l){return x?(''+x).substring(0,l):x};s.co=func"
+"tion(o){if(!o)return o;var n=new Object,x;for(x in o)if(x.indexOf('select')<0&&x.indexOf('filter')<0)n[x]=o[x];return n};s.num=function(x){x=''+x;for(var p=0;p<x.length;p++)if(('0123456789').indexO"
+"f(x.substring(p,p+1))<0)return 0;return 1};s.rep=s_rep;s.sp=s_sp;s.jn=s_jn;s.ape=function(x){var s=this,h='0123456789ABCDEF',i,c=s.charSet,n,l,e,y='';c=c?c.toUpperCase():'';if(x){x=''+x;if(c=='AUTO"
+"'&&('').charCodeAt){for(i=0;i<x.length;i++){c=x.substring(i,i+1);n=x.charCodeAt(i);if(n>127){l=0;e='';while(n||l<4){e=h.substring(n%16,n%16+1)+e;n=(n-n%16)/16;l++}y+='%u'+e}else if(c=='+')y+='%2B';"
+"else y+=escape(c)}x=y}else{x=x?s.rep(escape(''+x),'+','%2B'):x;if(x&&c&&s.em==1&&x.indexOf('%u')<0&&x.indexOf('%U')<0){i=x.indexOf('%');while(i>=0){i++;if(h.substring(8).indexOf(x.substring(i,i+1)."
+"toUpperCase())>=0)return x.substring(0,i)+'u00'+x.substring(i);i=x.indexOf('%',i)}}}}return x};s.epa=function(x){var s=this;return x?unescape(s.rep(''+x,'+',' ')):x};s.pt=function(x,d,f,a){var s=th"
+"is,t=x,z=0,y,r;while(t){y=t.indexOf(d);y=y<0?t.length:y;t=t.substring(0,y);r=s[f](t,a);if(r)return r;z+=y+d.length;t=x.substring(z,x.length);t=z<x.length?t:''}return ''};s.isf=function(t,a){var c=a"
+".indexOf(':');if(c>=0)a=a.substring(0,c);if(t.substring(0,2)=='s_')t=t.substring(2);return (t!=''&&t==a)};s.fsf=function(t,a){var s=this;if(s.pt(a,',','isf',t))s.fsg+=(s.fsg!=''?',':'')+t;return 0}"
+";s.fs=function(x,f){var s=this;s.fsg='';s.pt(x,',','fsf',f);return s.fsg};s.si=function(wd){var s=this,c=''+s_gi,a=c.indexOf(\"{\"),b=c.lastIndexOf(\"}\"),m;c=s_fe(a>0&&b>0?c.substring(a+1,b):0);if"
+"(wd&&wd.document&&c){wd.setTimeout('function s_sv(o,n,k){var v=o[k],i;if(v){if(typeof(v)==\"string\"||typeof(v)==\"number\")n[k]=v;else if (typeof(v)==\"array\"){n[k]=new Array;for(i=0;i<v.length;i"
+"++)s_sv(v,n[k],i)}else if (typeof(v)==\"object\"){n[k]=new Object;for(i in v)s_sv(v,n[k],i)}}}function s_si(t){var wd=window,s,i,j,c,a,b;wd.s_gi=new Function(\"un\",\"pg\",\"ss\",\"'+c+'\");wd.s=s_"
+"gi(\"'+s.oun+'\");s=wd.s;s.sa(\"'+s.un+'\");s.tfs=wd;s.pt(s.vl_g,\",\",\"vo1\",t);s.lnk=s.eo=s.linkName=s.linkType=s.wd.s_objectID=s.ppu=s.pe=s.pev1=s.pev2=s.pev3=\\'\\';if(t.m_l&&t.m_nl)for(i=0;i<"
+"t.m_nl.length;i++){n=t.m_nl[i];if(n){m=t[n];c=t[\"m_\"+n];if(m&&c){c=\"\"+c;if(c.indexOf(\"function\")>=0){a=c.indexOf(\"{\");b=c.lastIndexOf(\"}\");c=a>0&&b>0?c.substring(a+1,b):0;s[\"m_\"+n+\"_c"
+"\"]=c;if(m._e)s.loadModule(n);if(s[n])for(j=0;j<m._l.length;j++)s_sv(m,s[n],m._l[j])}}}}}var e,o,t;try{o=window.opener;if(o&&o.s_gi){t=o.s_gi(\"'+s.un+'\");if(t)s_si(t)}}catch(e){}',1)}};s.c_d='';s"
+".c_gdf=function(t,a){var s=this;if(!s.num(t))return 1;return 0};s.c_gd=function(){var s=this,d=s.wd.location.hostname,n=s.fpCookieDomainPeriods,p;if(!n)n=s.cookieDomainPeriods;if(d&&!s.c_d){n=n?par"
+"seInt(n):2;n=n>2?n:2;p=d.lastIndexOf('.');if(p>=0){while(p>=0&&n>1){p=d.lastIndexOf('.',p-1);n--}s.c_d=p>0&&s.pt(d,'.','c_gdf',0)?d.substring(p):d}}return s.c_d};s.c_r=function(k){var s=this;k=s.ap"
+"e(k);var c=' '+s.d.cookie,i=c.indexOf(' '+k+'='),e=i<0?i:c.indexOf(';',i),v=i<0?'':s.epa(c.substring(i+2+k.length,e<0?c.length:e));return v!='[[B]]'?v:''};s.c_w=function(k,v,e){var s=this,d=s.c_gd("
+"),l=s.cookieLifetime,t;v=''+v;l=l?(''+l).toUpperCase():'';if(e&&l!='SESSION'&&l!='NONE'){t=(v!=''?parseInt(l?l:0):-60);if(t){e=new Date;e.setTime(e.getTime()+(t*1000))}}if(k&&l!='NONE'){s.d.cookie="
+"k+'='+s.ape(v!=''?v:'[[B]]')+'; path=/;'+(e&&l!='SESSION'?' expires='+e.toGMTString()+';':'')+(d?' domain='+d+';':'');return s.c_r(k)==v}return 0};s.eh=function(o,e,r,f){var s=this,b='s_'+e+'_'+s._"
+"in,n=-1,l,i,x;if(!s.ehl)s.ehl=new Array;l=s.ehl;for(i=0;i<l.length&&n<0;i++){if(l[i].o==o&&l[i].e==e)n=i}if(n<0){n=i;l[n]=new Object}x=l[n];x.o=o;x.e=e;f=r?x.b:f;if(r||f){x.b=r?0:o[e];x.o[e]=f}if(x"
+".b){x.o[b]=x.b;return b}return 0};s.cet=function(f,a,t,o,b){var s=this,r,tcf;if(s.apv>=5&&(!s.isopera||s.apv>=7)){tcf=new Function('s','f','a','t','var e,r;try{r=s[f](a)}catch(e){r=s[t](e)}return r"
+"');r=tcf(s,f,a,t)}else{if(s.ismac&&s.u.indexOf('MSIE 4')>=0)r=s[b](a);else{s.eh(s.wd,'onerror',0,o);r=s[f](a);s.eh(s.wd,'onerror',1)}}return r};s.gtfset=function(e){var s=this;return s.tfs};s.gtfso"
+"e=new Function('e','var s=s_c_il['+s._in+'],c;s.eh(window,\"onerror\",1);s.etfs=1;c=s.t();if(c)s.d.write(c);s.etfs=0;return true');s.gtfsfb=function(a){return window};s.gtfsf=function(w){var s=this"
+",p=w.parent,l=w.location;s.tfs=w;if(p&&p.location!=l&&p.location.host==l.host){s.tfs=p;return s.gtfsf(s.tfs)}return s.tfs};s.gtfs=function(){var s=this;if(!s.tfs){s.tfs=s.wd;if(!s.etfs)s.tfs=s.cet("
+"'gtfsf',s.tfs,'gtfset',s.gtfsoe,'gtfsfb')}return s.tfs};s.mrq=function(u){var s=this,l=s.rl[u],n,r;s.rl[u]=0;if(l)for(n=0;n<l.length;n++){r=l[n];s.mr(0,0,r.r,0,r.t,r.u)}};s.br=function(id,rs){var s"
+"=this;if(s.disableBufferedRequests||!s.c_w('s_br',rs))s.brl=rs};s.flushBufferedRequests=function(){this.fbr(0)};s.fbr=function(id){var s=this,br=s.c_r('s_br');if(!br)br=s.brl;if(br){if(!s.disableBu"
+"fferedRequests)s.c_w('s_br','');s.mr(0,0,br)}s.brl=0};s.mr=function(sess,q,rs,id,ta,u){var s=this,dc=s.dc,t1=s.trackingServer,t2=s.trackingServerSecure,tb=s.trackingServerBase,p='.sc',ns=s.visitorN"
+"amespace,un=s.cls(u?u:(ns?ns:s.fun)),r=new Object,l,imn='s_i_'+(un),im,b,e;if(!rs){if(t1){if(t2&&s.ssl)t1=t2}else{if(!tb)tb='2o7.net';if(dc)dc=(''+dc).toLowerCase();else dc='d1';if(tb=='2o7.net'){i"
+"f(dc=='d1')dc='112';else if(dc=='d2')dc='122';p=''}t1=un+'.'+dc+'.'+p+tb}rs='http'+(s.ssl?'s':'')+'://'+t1+'/b/ss/'+s.un+'/'+(s.mobile?'5.1':'1')+'/H.20.3/'+sess+'?AQB=1&ndh=1'+(q?q:'')+'&AQE=1';if"
+"(s.isie&&!s.ismac){if(s.apv>5.5)rs=s.fl(rs,4095);else rs=s.fl(rs,2047)}if(id){s.br(id,rs);return}}if(s.d.images&&s.apv>=3&&(!s.isopera||s.apv>=7)&&(s.ns6<0||s.apv>=6.1)){if(!s.rc)s.rc=new Object;if"
+"(!s.rc[un]){s.rc[un]=1;if(!s.rl)s.rl=new Object;s.rl[un]=new Array;setTimeout('if(window.s_c_il)window.s_c_il['+s._in+'].mrq(\"'+un+'\")',750)}else{l=s.rl[un];if(l){r.t=ta;r.u=un;r.r=rs;l[l.length]"
+"=r;return ''}imn+='_'+s.rc[un];s.rc[un]++}im=s.wd[imn];if(!im)im=s.wd[imn]=new Image;im.s_l=0;im.onload=new Function('e','this.s_l=1;var wd=window,s;if(wd.s_c_il){s=wd.s_c_il['+s._in+'];s.mrq(\"'+u"
+"n+'\");s.nrs--;if(!s.nrs)s.m_m(\"rr\")}');if(!s.nrs){s.nrs=1;s.m_m('rs')}else s.nrs++;im.src=rs;if(rs.indexOf('&pe=')>=0&&(!ta||ta=='_self'||ta=='_top'||(s.wd.name&&ta==s.wd.name))){b=e=new Date;wh"
+"ile(!im.s_l&&e.getTime()-b.getTime()<500)e=new Date}return ''}return '<im'+'g sr'+'c=\"'+rs+'\" width=1 height=1 border=0 alt=\"\">'};s.gg=function(v){var s=this;if(!s.wd['s_'+v])s.wd['s_'+v]='';re"
+"turn s.wd['s_'+v]};s.glf=function(t,a){if(t.substring(0,2)=='s_')t=t.substring(2);var s=this,v=s.gg(t);if(v)s[t]=v};s.gl=function(v){var s=this;if(s.pg)s.pt(v,',','glf',0)};s.rf=function(x){var s=t"
+"his,y,i,j,h,l,a,b='',c='',t;if(x){y=''+x;i=y.indexOf('?');if(i>0){a=y.substring(i+1);y=y.substring(0,i);h=y.toLowerCase();i=0;if(h.substring(0,7)=='http://')i+=7;else if(h.substring(0,8)=='https://"
+"')i+=8;h=h.substring(i);i=h.indexOf(\"/\");if(i>0){h=h.substring(0,i);if(h.indexOf('google')>=0){a=s.sp(a,'&');if(a.length>1){l=',q,ie,start,search_key,word,kw,cd,';for(j=0;j<a.length;j++){t=a[j];i"
+"=t.indexOf('=');if(i>0&&l.indexOf(','+t.substring(0,i)+',')>=0)b+=(b?'&':'')+t;else c+=(c?'&':'')+t}if(b&&c){y+='?'+b+'&'+c;if(''+x!=y)x=y}}}}}}return x};s.hav=function(){var s=this,qs='',fv=s.link"
+"TrackVars,fe=s.linkTrackEvents,mn,i;if(s.pe){mn=s.pe.substring(0,1).toUpperCase()+s.pe.substring(1);if(s[mn]){fv=s[mn].trackVars;fe=s[mn].trackEvents}}fv=fv?fv+','+s.vl_l+','+s.vl_l2:'';for(i=0;i<s"
+".va_t.length;i++){var k=s.va_t[i],v=s[k],b=k.substring(0,4),x=k.substring(4),n=parseInt(x),q=k;if(v&&k!='linkName'&&k!='linkType'){if(s.pe||s.lnk||s.eo){if(fv&&(','+fv+',').indexOf(','+k+',')<0)v='"
+"';if(k=='events'&&fe)v=s.fs(v,fe)}if(v){if(k=='dynamicVariablePrefix')q='D';else if(k=='visitorID')q='vid';else if(k=='pageURL'){q='g';v=s.fl(v,255)}else if(k=='referrer'){q='r';v=s.fl(s.rf(v),255)"
+"}else if(k=='vmk'||k=='visitorMigrationKey')q='vmt';else if(k=='visitorMigrationServer'){q='vmf';if(s.ssl&&s.visitorMigrationServerSecure)v=''}else if(k=='visitorMigrationServerSecure'){q='vmf';if("
+"!s.ssl&&s.visitorMigrationServer)v=''}else if(k=='charSet'){q='ce';if(v.toUpperCase()=='AUTO')v='ISO8859-1';else if(s.em==2)v='UTF-8'}else if(k=='visitorNamespace')q='ns';else if(k=='cookieDomainPe"
+"riods')q='cdp';else if(k=='cookieLifetime')q='cl';else if(k=='variableProvider')q='vvp';else if(k=='currencyCode')q='cc';else if(k=='channel')q='ch';else if(k=='transactionID')q='xact';else if(k=='"
+"campaign')q='v0';else if(k=='resolution')q='s';else if(k=='colorDepth')q='c';else if(k=='javascriptVersion')q='j';else if(k=='javaEnabled')q='v';else if(k=='cookiesEnabled')q='k';else if(k=='browse"
+"rWidth')q='bw';else if(k=='browserHeight')q='bh';else if(k=='connectionType')q='ct';else if(k=='homepage')q='hp';else if(k=='plugins')q='p';else if(s.num(x)){if(b=='prop')q='c'+n;else if(b=='eVar')"
+"q='v'+n;else if(b=='list')q='l'+n;else if(b=='hier'){q='h'+n;v=s.fl(v,255)}}if(v)qs+='&'+q+'='+(k.substring(0,3)!='pev'?s.ape(v):v)}}}return qs};s.ltdf=function(t,h){t=t?t.toLowerCase():'';h=h?h.to"
+"LowerCase():'';var qi=h.indexOf('?');h=qi>=0?h.substring(0,qi):h;if(t&&h.substring(h.length-(t.length+1))=='.'+t)return 1;return 0};s.ltef=function(t,h){t=t?t.toLowerCase():'';h=h?h.toLowerCase():'"
+"';if(t&&h.indexOf(t)>=0)return 1;return 0};s.lt=function(h){var s=this,lft=s.linkDownloadFileTypes,lef=s.linkExternalFilters,lif=s.linkInternalFilters;lif=lif?lif:s.wd.location.hostname;h=h.toLower"
+"Case();if(s.trackDownloadLinks&&lft&&s.pt(lft,',','ltdf',h))return 'd';if(s.trackExternalLinks&&h.substring(0,1)!='#'&&(lef||lif)&&(!lef||s.pt(lef,',','ltef',h))&&(!lif||!s.pt(lif,',','ltef',h)))re"
+"turn 'e';return ''};s.lc=new Function('e','var s=s_c_il['+s._in+'],b=s.eh(this,\"onclick\");s.lnk=s.co(this);s.t();s.lnk=0;if(b)return this[b](e);return true');s.bc=new Function('e','var s=s_c_il['"
+"+s._in+'],f,tcf;if(s.d&&s.d.all&&s.d.all.cppXYctnr)return;s.eo=e.srcElement?e.srcElement:e.target;tcf=new Function(\"s\",\"var e;try{if(s.eo&&(s.eo.tagName||s.eo.parentElement||s.eo.parentNode))s.t"
+"()}catch(e){}\");tcf(s);s.eo=0');s.oh=function(o){var s=this,l=s.wd.location,h=o.href?o.href:'',i,j,k,p;i=h.indexOf(':');j=h.indexOf('?');k=h.indexOf('/');if(h&&(i<0||(j>=0&&i>j)||(k>=0&&i>k))){p=o"
+".protocol&&o.protocol.length>1?o.protocol:(l.protocol?l.protocol:'');i=l.pathname.lastIndexOf('/');h=(p?p+'//':'')+(o.host?o.host:(l.host?l.host:''))+(h.substring(0,1)!='/'?l.pathname.substring(0,i"
+"<0?0:i)+'/':'')+h}return h};s.ot=function(o){var t=o.tagName;t=t&&t.toUpperCase?t.toUpperCase():'';if(t=='SHAPE')t='';if(t){if(t=='INPUT'&&o.type&&o.type.toUpperCase)t=o.type.toUpperCase();else if("
+"!t&&o.href)t='A';}return t};s.oid=function(o){var s=this,t=s.ot(o),p,c,n='',x=0;if(t&&!o.s_oid){p=o.protocol;c=o.onclick;if(o.href&&(t=='A'||t=='AREA')&&(!c||!p||p.toLowerCase().indexOf('javascript"
+"')<0))n=s.oh(o);else if(c){n=s.rep(s.rep(s.rep(s.rep(''+c,\"\\r\",''),\"\\n\",''),\"\\t\",''),' ','');x=2}else if(o.value&&(t=='INPUT'||t=='SUBMIT')){n=o.value;x=3}else if(o.src&&t=='IMAGE')n=o.src"
+";if(n){o.s_oid=s.fl(n,100);o.s_oidt=x}}return o.s_oid};s.rqf=function(t,un){var s=this,e=t.indexOf('='),u=e>=0?','+t.substring(0,e)+',':'';return u&&u.indexOf(','+un+',')>=0?s.epa(t.substring(e+1))"
+":''};s.rq=function(un){var s=this,c=un.indexOf(','),v=s.c_r('s_sq'),q='';if(c<0)return s.pt(v,'&','rqf',un);return s.pt(un,',','rq',0)};s.sqp=function(t,a){var s=this,e=t.indexOf('='),q=e<0?'':s.ep"
+"a(t.substring(e+1));s.sqq[q]='';if(e>=0)s.pt(t.substring(0,e),',','sqs',q);return 0};s.sqs=function(un,q){var s=this;s.squ[un]=q;return 0};s.sq=function(q){var s=this,k='s_sq',v=s.c_r(k),x,c=0;s.sq"
+"q=new Object;s.squ=new Object;s.sqq[q]='';s.pt(v,'&','sqp',0);s.pt(s.un,',','sqs',q);v='';for(x in s.squ)if(x&&(!Object||!Object.prototype||!Object.prototype[x]))s.sqq[s.squ[x]]+=(s.sqq[s.squ[x]]?'"
+",':'')+x;for(x in s.sqq)if(x&&(!Object||!Object.prototype||!Object.prototype[x])&&s.sqq[x]&&(x==q||c<2)){v+=(v?'&':'')+s.sqq[x]+'='+s.ape(x);c++}return s.c_w(k,v,0)};s.wdl=new Function('e','var s=s"
+"_c_il['+s._in+'],r=true,b=s.eh(s.wd,\"onload\"),i,o,oc;if(b)r=this[b](e);for(i=0;i<s.d.links.length;i++){o=s.d.links[i];oc=o.onclick?\"\"+o.onclick:\"\";if((oc.indexOf(\"s_gs(\")<0||oc.indexOf(\".s"
+"_oc(\")>=0)&&oc.indexOf(\".tl(\")<0)s.eh(o,\"onclick\",0,s.lc);}return r');s.wds=function(){var s=this;if(s.apv>3&&(!s.isie||!s.ismac||s.apv>=5)){if(s.b&&s.b.attachEvent)s.b.attachEvent('onclick',s"
+".bc);else if(s.b&&s.b.addEventListener)s.b.addEventListener('click',s.bc,false);else s.eh(s.wd,'onload',0,s.wdl)}};s.vs=function(x){var s=this,v=s.visitorSampling,g=s.visitorSamplingGroup,k='s_vsn_"
+"'+s.un+(g?'_'+g:''),n=s.c_r(k),e=new Date,y=e.getYear();e.setYear(y+10+(y<1900?1900:0));if(v){v*=100;if(!n){if(!s.c_w(k,x,e))return 0;n=x}if(n%10000>v)return 0}return 1};s.dyasmf=function(t,m){if(t"
+"&&m&&m.indexOf(t)>=0)return 1;return 0};s.dyasf=function(t,m){var s=this,i=t?t.indexOf('='):-1,n,x;if(i>=0&&m){var n=t.substring(0,i),x=t.substring(i+1);if(s.pt(x,',','dyasmf',m))return n}return 0}"
+";s.uns=function(){var s=this,x=s.dynamicAccountSelection,l=s.dynamicAccountList,m=s.dynamicAccountMatch,n,i;s.un=s.un.toLowerCase();if(x&&l){if(!m)m=s.wd.location.host;if(!m.toLowerCase)m=''+m;l=l."
+"toLowerCase();m=m.toLowerCase();n=s.pt(l,';','dyasf',m);if(n)s.un=n}i=s.un.indexOf(',');s.fun=i<0?s.un:s.un.substring(0,i)};s.sa=function(un){var s=this;s.un=un;if(!s.oun)s.oun=un;else if((','+s.ou"
+"n+',').indexOf(','+un+',')<0)s.oun+=','+un;s.uns()};s.m_i=function(n,a){var s=this,m,f=n.substring(0,1),r,l,i;if(!s.m_l)s.m_l=new Object;if(!s.m_nl)s.m_nl=new Array;m=s.m_l[n];if(!a&&m&&m._e&&!m._i"
+")s.m_a(n);if(!m){m=new Object,m._c='s_m';m._in=s.wd.s_c_in;m._il=s._il;m._il[m._in]=m;s.wd.s_c_in++;m.s=s;m._n=n;m._l=new Array('_c','_in','_il','_i','_e','_d','_dl','s','n','_r','_g','_g1','_t','_"
+"t1','_x','_x1','_rs','_rr','_l');s.m_l[n]=m;s.m_nl[s.m_nl.length]=n}else if(m._r&&!m._m){r=m._r;r._m=m;l=m._l;for(i=0;i<l.length;i++)if(m[l[i]])r[l[i]]=m[l[i]];r._il[r._in]=r;m=s.m_l[n]=r}if(f==f.t"
+"oUpperCase())s[n]=m;return m};s.m_a=new Function('n','g','e','if(!g)g=\"m_\"+n;var s=s_c_il['+s._in+'],c=s[g+\"_c\"],m,x,f=0;if(!c)c=s.wd[\"s_\"+g+\"_c\"];if(c&&s_d)s[g]=new Function(\"s\",s_ft(s_d"
+"(c)));x=s[g];if(!x)x=s.wd[\\'s_\\'+g];if(!x)x=s.wd[g];m=s.m_i(n,1);if(x&&(!m._i||g!=\"m_\"+n)){m._i=f=1;if((\"\"+x).indexOf(\"function\")>=0)x(s);else s.m_m(\"x\",n,x,e)}m=s.m_i(n,1);if(m._dl)m._dl"
+"=m._d=0;s.dlt();return f');s.m_m=function(t,n,d,e){t='_'+t;var s=this,i,x,m,f='_'+t,r=0,u;if(s.m_l&&s.m_nl)for(i=0;i<s.m_nl.length;i++){x=s.m_nl[i];if(!n||x==n){m=s.m_i(x);u=m[t];if(u){if((''+u).in"
+"dexOf('function')>=0){if(d&&e)u=m[t](d,e);else if(d)u=m[t](d);else u=m[t]()}}if(u)r=1;u=m[t+1];if(u&&!m[f]){if((''+u).indexOf('function')>=0){if(d&&e)u=m[t+1](d,e);else if(d)u=m[t+1](d);else u=m[t+"
+"1]()}}m[f]=1;if(u)r=1}}return r};s.m_ll=function(){var s=this,g=s.m_dl,i,o;if(g)for(i=0;i<g.length;i++){o=g[i];if(o)s.loadModule(o.n,o.u,o.d,o.l,o.e,1);g[i]=0}};s.loadModule=function(n,u,d,l,e,ln){"
+"var s=this,m=0,i,g,o=0,f1,f2,c=s.h?s.h:s.b,b,tcf;if(n){i=n.indexOf(':');if(i>=0){g=n.substring(i+1);n=n.substring(0,i)}else g=\"m_\"+n;m=s.m_i(n)}if((l||(n&&!s.m_a(n,g)))&&u&&s.d&&c&&s.d.createElem"
+"ent){if(d){m._d=1;m._dl=1}if(ln){if(s.ssl)u=s.rep(u,'http:','https:');i='s_s:'+s._in+':'+n+':'+g;b='var s=s_c_il['+s._in+'],o=s.d.getElementById(\"'+i+'\");if(s&&o){if(!o.l&&s.wd.'+g+'){o.l=1;if(o."
+"i)clearTimeout(o.i);o.i=0;s.m_a(\"'+n+'\",\"'+g+'\"'+(e?',\"'+e+'\"':'')+')}';f2=b+'o.c++;if(!s.maxDelay)s.maxDelay=250;if(!o.l&&o.c<(s.maxDelay*2)/100)o.i=setTimeout(o.f2,100)}';f1=new Function('e"
+"',b+'}');tcf=new Function('s','c','i','u','f1','f2','var e,o=0;try{o=s.d.createElement(\"script\");if(o){o.type=\"text/javascript\";'+(n?'o.id=i;o.defer=true;o.onload=o.onreadystatechange=f1;o.f2=f"
+"2;o.l=0;':'')+'o.src=u;c.appendChild(o);'+(n?'o.c=0;o.i=setTimeout(f2,100)':'')+'}}catch(e){o=0}return o');o=tcf(s,c,i,u,f1,f2)}else{o=new Object;o.n=n+':'+g;o.u=u;o.d=d;o.l=l;o.e=e;g=s.m_dl;if(!g)"
+"g=s.m_dl=new Array;i=0;while(i<g.length&&g[i])i++;g[i]=o}}else if(n){m=s.m_i(n);m._e=1}return m};s.vo1=function(t,a){if(a[t]||a['!'+t])this[t]=a[t]};s.vo2=function(t,a){if(!a[t]){a[t]=this[t];if(!a"
+"[t])a['!'+t]=1}};s.dlt=new Function('var s=s_c_il['+s._in+'],d=new Date,i,vo,f=0;if(s.dll)for(i=0;i<s.dll.length;i++){vo=s.dll[i];if(vo){if(!s.m_m(\"d\")||d.getTime()-vo._t>=s.maxDelay){s.dll[i]=0;"
+"s.t(vo)}else f=1}}if(s.dli)clearTimeout(s.dli);s.dli=0;if(f){if(!s.dli)s.dli=setTimeout(s.dlt,s.maxDelay)}else s.dll=0');s.dl=function(vo){var s=this,d=new Date;if(!vo)vo=new Object;s.pt(s.vl_g,','"
+",'vo2',vo);vo._t=d.getTime();if(!s.dll)s.dll=new Array;s.dll[s.dll.length]=vo;if(!s.maxDelay)s.maxDelay=250;s.dlt()};s.t=function(vo,id){var s=this,trk=1,tm=new Date,sed=Math&&Math.random?Math.floo"
+"r(Math.random()*10000000000000):tm.getTime(),sess='s'+Math.floor(tm.getTime()/10800000)%10+sed,y=tm.getYear(),vt=tm.getDate()+'/'+tm.getMonth()+'/'+(y<1900?y+1900:y)+' '+tm.getHours()+':'+tm.getMin"
+"utes()+':'+tm.getSeconds()+' '+tm.getDay()+' '+tm.getTimezoneOffset(),tcf,tfs=s.gtfs(),ta='',q='',qs='',code='',vb=new Object;s.gl(s.vl_g);s.uns();s.m_ll();if(!s.td){var tl=tfs.location,a,o,i,x='',"
+"c='',v='',p='',bw='',bh='',j='1.0',k=s.c_w('s_cc','true',0)?'Y':'N',hp='',ct='',pn=0,ps;if(String&&String.prototype){j='1.1';if(j.match){j='1.2';if(tm.setUTCDate){j='1.3';if(s.isie&&s.ismac&&s.apv>"
+"=5)j='1.4';if(pn.toPrecision){j='1.5';a=new Array;if(a.forEach){j='1.6';i=0;o=new Object;tcf=new Function('o','var e,i=0;try{i=new Iterator(o)}catch(e){}return i');i=tcf(o);if(i&&i.next)j='1.7'}}}}"
+"}if(s.apv>=4)x=screen.width+'x'+screen.height;if(s.isns||s.isopera){if(s.apv>=3){v=s.n.javaEnabled()?'Y':'N';if(s.apv>=4){c=screen.pixelDepth;bw=s.wd.innerWidth;bh=s.wd.innerHeight}}s.pl=s.n.plugin"
+"s}else if(s.isie){if(s.apv>=4){v=s.n.javaEnabled()?'Y':'N';c=screen.colorDepth;if(s.apv>=5){bw=s.d.documentElement.offsetWidth;bh=s.d.documentElement.offsetHeight;if(!s.ismac&&s.b){tcf=new Function"
+"('s','tl','var e,hp=0;try{s.b.addBehavior(\"#default#homePage\");hp=s.b.isHomePage(tl)?\"Y\":\"N\"}catch(e){}return hp');hp=tcf(s,tl);tcf=new Function('s','var e,ct=0;try{s.b.addBehavior(\"#default"
+"#clientCaps\");ct=s.b.connectionType}catch(e){}return ct');ct=tcf(s)}}}else r=''}if(s.pl)while(pn<s.pl.length&&pn<30){ps=s.fl(s.pl[pn].name,100)+';';if(p.indexOf(ps)<0)p+=ps;pn++}s.resolution=x;s.c"
+"olorDepth=c;s.javascriptVersion=j;s.javaEnabled=v;s.cookiesEnabled=k;s.browserWidth=bw;s.browserHeight=bh;s.connectionType=ct;s.homepage=hp;s.plugins=p;s.td=1}if(vo){s.pt(s.vl_g,',','vo2',vb);s.pt("
+"s.vl_g,',','vo1',vo)}if(s.usePlugins)s.doPlugins(s);var l=s.wd.location,r=tfs.document.referrer;if(!s.pageURL)s.pageURL=l.href?l.href:l;if(!s.referrer&&!s._1_referrer){s.referrer=r;s._1_referrer=1}"
+"if((vo&&vo._t)||!s.m_m('d')){s.m_m('g');if(s.lnk||s.eo){var o=s.eo?s.eo:s.lnk;if(!o)return '';var p=s.pageName,w=1,t=s.ot(o),n=s.oid(o),x=o.s_oidt,h,l,i,oc;if(s.eo&&o==s.eo){while(o&&!n&&t!='BODY')"
+"{o=o.parentElement?o.parentElement:o.parentNode;if(!o)return '';t=s.ot(o);n=s.oid(o);x=o.s_oidt}oc=o.onclick?''+o.onclick:'';if((oc.indexOf(\"s_gs(\")>=0&&oc.indexOf(\".s_oc(\")<0)||oc.indexOf(\".t"
+"l(\")>=0)return ''}ta=n?o.target:1;h=s.oh(o);i=h.indexOf('?');h=s.linkLeaveQueryString||i<0?h:h.substring(0,i);l=s.linkName;t=s.linkType?s.linkType.toLowerCase():s.lt(h);if(t&&(h||l))q+='&pe=lnk_'+"
+"(t=='d'||t=='e'?s.ape(t):'o')+(h?'&pev1='+s.ape(h):'')+(l?'&pev2='+s.ape(l):'');else trk=0;if(s.trackInlineStats){if(!p){p=s.pageURL;w=0}t=s.ot(o);i=o.sourceIndex;if(s.gg('objectID')){n=s.gg('objec"
+"tID');x=1;i=1}if(p&&n&&t)qs='&pid='+s.ape(s.fl(p,255))+(w?'&pidt='+w:'')+'&oid='+s.ape(s.fl(n,100))+(x?'&oidt='+x:'')+'&ot='+s.ape(t)+(i?'&oi='+i:'')}}if(!trk&&!qs)return '';s.sampled=s.vs(sed);if("
+"trk){if(s.sampled)code=s.mr(sess,(vt?'&t='+s.ape(vt):'')+s.hav()+q+(qs?qs:s.rq(s.un)),0,id,ta);qs='';s.m_m('t');if(s.p_r)s.p_r();s.referrer=''}s.sq(qs);}else{s.dl(vo);}if(vo)s.pt(s.vl_g,',','vo1',v"
+"b);s.lnk=s.eo=s.linkName=s.linkType=s.wd.s_objectID=s.ppu=s.pe=s.pev1=s.pev2=s.pev3='';if(s.pg)s.wd.s_lnk=s.wd.s_eo=s.wd.s_linkName=s.wd.s_linkType='';if(!id&&!s.tc){s.tc=1;s.flushBufferedRequests("
+")}return code};s.tl=function(o,t,n,vo){var s=this;s.lnk=s.co(o);s.linkType=t;s.linkName=n;s.t(vo)};if(pg){s.wd.s_co=function(o){var s=s_gi(\"_\",1,1);return s.co(o)};s.wd.s_gs=function(un){var s=s_"
+"gi(un,1,1);return s.t()};s.wd.s_dc=function(un){var s=s_gi(un,1);return s.t()}}s.ssl=(s.wd.location.protocol.toLowerCase().indexOf('https')>=0);s.d=document;s.b=s.d.body;if(s.d.getElementsByTagName"
+"){s.h=s.d.getElementsByTagName('HEAD');if(s.h)s.h=s.h[0]}s.n=navigator;s.u=s.n.userAgent;s.ns6=s.u.indexOf('Netscape6/');var apn=s.n.appName,v=s.n.appVersion,ie=v.indexOf('MSIE '),o=s.u.indexOf('Op"
+"era '),i;if(v.indexOf('Opera')>=0||o>0)apn='Opera';s.isie=(apn=='Microsoft Internet Explorer');s.isns=(apn=='Netscape');s.isopera=(apn=='Opera');s.ismac=(s.u.indexOf('Mac')>=0);if(o>0)s.apv=parseFl"
+"oat(s.u.substring(o+6));else if(ie>0){s.apv=parseInt(i=v.substring(ie+5));if(s.apv>3)s.apv=parseFloat(i)}else if(s.ns6>0)s.apv=parseFloat(s.u.substring(s.ns6+10));else s.apv=parseFloat(v);s.em=0;if"
+"(String.fromCharCode){i=escape(String.fromCharCode(256)).toUpperCase();s.em=(i=='%C4%80'?2:(i=='%U0100'?1:0))}s.sa(un);s.vl_l='dynamicVariablePrefix,visitorID,vmk,visitorMigrationKey,visitorMigrati"
+"onServer,visitorMigrationServerSecure,ppu,charSet,visitorNamespace,cookieDomainPeriods,cookieLifetime,pageName,pageURL,referrer,currencyCode';s.va_l=s.sp(s.vl_l,',');s.vl_t=s.vl_l+',variableProvide"
+"r,channel,server,pageType,transactionID,purchaseID,campaign,state,zip,events,products,linkName,linkType';for(var n=1;n<51;n++)s.vl_t+=',prop'+n+',eVar'+n+',hier'+n+',list'+n;s.vl_l2=',tnt,pe,pev1,p"
+"ev2,pev3,resolution,colorDepth,javascriptVersion,javaEnabled,cookiesEnabled,browserWidth,browserHeight,connectionType,homepage,plugins';s.vl_t+=s.vl_l2;s.va_t=s.sp(s.vl_t,',');s.vl_g=s.vl_t+',track"
+"ingServer,trackingServerSecure,trackingServerBase,fpCookieDomainPeriods,disableBufferedRequests,mobile,visitorSampling,visitorSamplingGroup,dynamicAccountSelection,dynamicAccountList,dynamicAccount"
+"Match,trackDownloadLinks,trackExternalLinks,trackInlineStats,linkLeaveQueryString,linkDownloadFileTypes,linkExternalFilters,linkInternalFilters,linkTrackVars,linkTrackEvents,linkNames,lnk,eo,_1_ref"
+"errer';s.va_g=s.sp(s.vl_g,',');s.pg=pg;s.gl(s.vl_g);if(!ss)s.wds()",
w=window,l=w.s_c_il,n=navigator,u=n.userAgent,v=n.appVersion,e=v.indexOf('MSIE '),m=u.indexOf('Netscape6/'),a,i,s;if(un){un=un.toLowerCase();if(l)for(i=0;i<l.length;i++){s=l[i];if(!s._c||s._c=='s_c'){if(s.oun==un)return s;else if(s.fs&&s.sa&&s.fs(s.oun,un)){s.sa(un);return s}}}}w.s_an='0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz';
w.s_sp=new Function("x","d","var a=new Array,i=0,j;if(x){if(x.split)a=x.split(d);else if(!d)for(i=0;i<x.length;i++)a[a.length]=x.substring(i,i+1);else while(i>=0){j=x.indexOf(d,i);a[a.length]=x.subst"
+"ring(i,j<0?x.length:j);i=j;if(i>=0)i+=d.length}}return a");
w.s_jn=new Function("a","d","var x='',i,j=a.length;if(a&&j>0){x=a[0];if(j>1){if(a.join)x=a.join(d);else for(i=1;i<j;i++)x+=d+a[i]}}return x");
w.s_rep=new Function("x","o","n","return s_jn(s_sp(x,o),n)");
w.s_d=new Function("x","var t='`^@$#',l=s_an,l2=new Object,x2,d,b=0,k,i=x.lastIndexOf('~~'),j,v,w;if(i>0){d=x.substring(0,i);x=x.substring(i+2);l=s_sp(l,'');for(i=0;i<62;i++)l2[l[i]]=i;t=s_sp(t,'');d"
+"=s_sp(d,'~');i=0;while(i<5){v=0;if(x.indexOf(t[i])>=0) {x2=s_sp(x,t[i]);for(j=1;j<x2.length;j++){k=x2[j].substring(0,1);w=t[i]+k;if(k!=' '){v=1;w=d[b+l2[k]]}x2[j]=w+x2[j].substring(1)}}if(v)x=s_jn("
+"x2,'');else{w=t[i]+' ';if(x.indexOf(w)>=0)x=s_rep(x,w,t[i]);i++;b+=62}}}return x");
w.s_fe=new Function("c","return s_rep(s_rep(s_rep(c,'\\\\','\\\\\\\\'),'\"','\\\\\"'),\"\\n\",\"\\\\n\")");
w.s_fa=new Function("f","var s=f.indexOf('(')+1,e=f.indexOf(')'),a='',c;while(s>=0&&s<e){c=f.substring(s,s+1);if(c==',')a+='\",\"';else if((\"\\n\\r\\t \").indexOf(c)<0)a+=c;s++}return a?'\"'+a+'\"':"
+"a");
w.s_ft=new Function("c","c+='';var s,e,o,a,d,q,f,h,x;s=c.indexOf('=function(');while(s>=0){s++;d=1;q='';x=0;f=c.substring(s);a=s_fa(f);e=o=c.indexOf('{',s);e++;while(d>0){h=c.substring(e,e+1);if(q){i"
+"f(h==q&&!x)q='';if(h=='\\\\')x=x?0:1;else x=0}else{if(h=='\"'||h==\"'\")q=h;if(h=='{')d++;if(h=='}')d--}if(d>0)e++}c=c.substring(0,s)+'new Function('+(a?a+',':'')+'\"'+s_fe(c.substring(o+1,e))+'\")"
+"'+c.substring(e+1);s=c.indexOf('=function(')}return c;");
c=s_d(c);if(e>0){a=parseInt(i=v.substring(e+5));if(a>3)a=parseFloat(i)}else if(m>0)a=parseFloat(u.substring(m+10));else a=parseFloat(v);if(a>=5&&v.indexOf('Opera')<0&&u.indexOf('Opera')<0){w.s_c=new Function("un","pg","ss","var s=this;"+c);return new s_c(un,pg,ss)}else s=new Function("un","pg","ss","var s=new Object;"+s_ft(c)+";return s");return s(un,pg,ss)}
//////////////////¿È´ÏÃß¾î/////////////////////


<!--ÇªÅÍ Related site -->
function MM_swapImgRestore() { //v3.0
  var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
}

function MM_preloadImages() { //v3.0
  var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
    var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
    if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}

function MM_findObj(n, d) { //v4.01
  var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
    d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
  if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
  for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
  if(!x && d.getElementById) x=d.getElementById(n); return x;
}

function MM_swapImage() { //v3.0
  var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
   if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
}

function MM_showHideLayers() { //v6.0
  var i,p,v,obj,args=MM_showHideLayers.arguments;
  for (i=0; i<(args.length-2); i+=3)
  	if ((obj=MM_findObj(args[i]))!=null) {
  		v=args[i+2];
    	if (obj.style) {
    		obj=obj.style;
    		v=(v=='show')?'visible':(v=='hide')?'hidden':v;
    	}
   		obj.visibility=v;
   	}
}

// ½æ³×ÀÏ ÀÌ¹ÌÁö ¸¶¿ì½º ¿À¹ö½Ã ÀÌ¹ÌÁö ¹Ì¸®º¸±â ½ÃÀÛ

 function bt(id,after)
 {
 	if (typeof id != "undefined") {
		eval(id+'.src="'+after+'";');
	}
 }


// ÃÊ±â ¸ÞÀÎ ÆäÀÌÁö°¡ ¿­¸®°í ½ÇÇà µË´Ï´Ù.
function Navi_Start() {
	if ( getCookie( "REVISITCHECK" ) != "done" ) {
		var obj_view = document.getElementById("leftm_dpt");
		if( obj_view != null ) {
			obj_view.style.top = top_limit;	// ÆäÀÌÁö »óÀÇ ÁÂÇ¥ °è»ê °á°ú
			obj_view.style.left = right_limit;	// ÆäÀÌÁö »óÀÇ ÁÂÇ¥ °è»ê °á°ú
			obj_view.style.visibility="visible";
			div_obj = obj_view.style;
		}

		TimerStart();

		// Äí¸® ¼¼ÆÃ : 30ÀÏ µ¿¾È ÄíÅ° À¯Áö
		setCookie( "REVISITCHECK", "done" , 1);
	}
	else {
		MM_hideLayer('leftm_dpt');
		MM_showLayer('leftm_dpt_small');
		MM_showLayer('leftm_dpt_small_bottom');
	}
}


	function toHex( decimal )
	{
		var hex = "";
		var tmp;
		for( ; decimal > 16; ) {
			tmp = decimal % 16;
			if( tmp > 9 ) {
				switch( tmp ) {
					case 10 : tmp = "A"; break;
					case 11 : tmp = "B"; break;
					case 12 : tmp = "C"; break;
					case 13 : tmp = "D"; break;
					case 14 : tmp = "E"; break;
					case 15 : tmp = "F"; break;
				}
			}
			hex = tmp + hex;
			decimal = parseInt( decimal / 16 );
		}
		hex = decimal + hex;

		return hex;
	}
	function getReturnURL( url ) {
		var ret = "";

		for( var i = 0; i < url.length; i++ ) {
			ret = ret + toHex( url.charCodeAt( i ) );
		}
		return ret;
	}

function logincheck()
{
	location.href = doorurl+"/user/auth/jsp/userLogin4Account.jsp?returnurl=" + getReturnURL(this.location.href);
}
