<!-- 
	//		Function Define	(upload)	/////////////////////////////////////////////////////////////////

	function funcPopupMultiMediaLink(){
		var popWinObj = window.open("/popup/multimedia_link.html","popWin","width=350,height=306,left=50,top=50,scrollbars=no");

		popWinObj.focus();
	}

	function funcPopupUrlLink(){
		var popWinObj = window.open("/popup/url_link.html","popWin","width=350,height=306,left=50,top=50,scrollbars=no");

		popWinObj.focus();
	}

	function funcPopupOrg(url){
		var popWinObj = window.open(url,"popWin","");

		popWinObj.focus();
	}

	function funcPopupOrgImg(imgObj){
		var orgImg = imgObj.src.replace("http://thumb.worldofwarcraft.co.kr/thumb", "http://upload.worldofwarcraft.co.kr/wow");

		var height = screen.height;
		var width = screen.width;
		var leftpos = width / 2 - 50;
		var toppos = height / 2 - 50;
		var url = '/event/type/img/imgview.html?pic='+escape(orgImg.replace(/ /g,'+'));
		var popWinObj = window.open(url,'popWin','scrollbars=no,status=no,toolbar=no,resizable=yes,location=no,menu=no,width=100,height=100,left=' + leftpos + ',top=' + toppos);

		popWinObj.focus();
	}

	function funcPopupAccountChk(target){
		var popWinObj = window.open("https://www.worldofwarcraft.co.kr/popup/accountSearch.do?target="+target,"popWin","resizable=no,width=360,height=300,left=50,top=50");

		popWinObj.focus();
	}

	//mode : 0 = default, 1 = img, 2 = html
	function funcPopupUpload(target, mode, align){
		var popWinObj = window.open("/popup/upload.do?target="+target+"&mode="+mode,"popWin","width=350,height=356,left=50,top=50,scrollbars=no");

		popWinObj.focus();
	}

	function funcPopupMyinfoEmailChange(){
		var popWinOjb = window.open('about:blank','authWin','resizable=no,width=360,height=470,left=50,top=0,scrollbars=no');

		funcSubmitForm("formEmailAuth", "authWin", "https://www.worldofwarcraft.co.kr/popup/myinfo/mailauth/change.do");
		formEmailAuth.submit();
	}

	function funcPopupMyinfoCellChange(){
		var popWinOjb = window.open('about:blank','authWin','resizable=no,width=360,height=350,left=50,top=0,scrollbars=no');

		funcSubmitForm("formCellAuth", "authWin", "https://www.worldofwarcraft.co.kr/popup/myinfo/cellauth/change.do");
		formCellAuth.submit();
	}

	function funcPopupMyinfoEmailAuth(){
		var popWinOjb = window.open('about:blank','authWin','resizable=no,width=360,height=470,left=50,top=0,scrollbars=no');

		funcSubmitForm("formEmailAuth", "authWin", "https://www.worldofwarcraft.co.kr/popup/myinfo/mailauth/auth.do");
		formEmailAuth.submit();
	}

	function funcPopupMyinfoCellAuth(){
		var popWinOjb = window.open('about:blank','authWin','resizable=no,width=360,height=350,left=50,top=0,scrollbars=no');

		funcSubmitForm("formCellAuth", "authWin", "https://www.worldofwarcraft.co.kr/popup/myinfo/cellauth/auth.do");
		formCellAuth.submit();
	}

	function funcPopupMemberPublicAuth(itype){
		document.domain = "www.worldofwarcraft.co.kr";
		
		if(!itype)
			itype = "";

		var popWin = window.open('about:blank','authWin','resizable=no,width=360,height=380,left=50,top=50,scrollbars=no');

		funcSubmitForm("form", "authWin", "https://www.worldofwarcraft.co.kr/popup/member/publicauth/step1.do?itype="+itype);

		form.submit();
	}

	function funcPopupMemberCellAuth(utype, itype){
		//도메인
		document.domain = "worldofwarcraft.co.kr";
		
		if(!itype)
			itype = "";

		var popWin = window.open('about:blank','authWin','resizable=no,width=360,height=380,left=50,top=50,scrollbars=no');

		funcSubmitForm("form", "authWin", "https://payment.worldofwarcraft.co.kr/billing/danal/userauth/step1.jsp?utype="+utype+"&itype="+itype);

		form.submit();
	}
//-->

