
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 PresizeIframe(name) {		
	if (name == null || name == "") {
		return;
	}
	try {
		var oIFrame = document.getElementById(name);
		if( 500 > oIFrame.contentWindow.document.body.scrollHeight){
			oIFrame.style.height = 250;
		} else {
			oIFrame.style.height = oIFrame.contentWindow.document.body.scrollHeight;						
		}					
	} 
	catch (e) {}	
	//document.all["subIMG"].style.display = '';
}

function goMenu(url) {
	document.all.blogmain.src = url;
}		

// check element all
function CheckAllCheckbox(o) {
  if (o.length != null) {
    var b = !o[0].checked;

	  for (i = 0; i < o.length; i++) {
		  o[i].checked = b;
	  }
  } else {
	  o.checked = !o.checked;
  }
}

function CheckLogin() {
	CheckLoginProcess(document.forms[0].UserID, document.forms[0].PassWord,"");
}
function goMyInFo(){
	window.open("http://www.edenworld.co.kr/h_member/h_hms/ms_bypass.aspx?regsite=mythos");
}
function goUserInfo(){
	window.location.href = "http://www.edenworld.co.kr/h_member/h_hms/ms_bypass.aspx?regsite=mythos";	
}
function goPartiGuild(url)
{
	if(url.value) {
		if(url.index == 2) {
			location.href = url.value;
		}
		else {
			window.open(url.value, "EDENOn_PartiGuild");		
		}
	}
}

function childLogOut()
{
	topNaviReLoad();
	try {
		if(self.parent.frames.length != 0)
		{
			//window.location.reload();
		}
	} catch (ex) {
		//ex 
	}	
}

// Submit form to another page without ViewState
function FormSubmit(f, action) {
	for (i = 0; (e = document.getElementsByTagName("input")[i]); i++) {
		if (e.getAttribute("type").indexOf("hidden") != -1) {
			if (e.getAttribute("name") == "__VIEWSTATE") {
				e.disabled = true;
				break;
			}
		}
	}

	f.action = action;
	f.submit();
}

function goVoteResult(){
	var LeftPosition = (screen.width) ? (screen.width-135)/2 : 0;
	var TopPosition = (screen.height) ? (screen.height-320)/2 : 0;
	
	popvote = window.open("/popup/MainVoteResult.aspx", "goVoteResult", "width=500,height=400,status=no,scrollbars=no,top=" + TopPosition + ",left=" + LeftPosition);
	popvote.focus();
}

// 이미지 사이즈 조정하기
function ResizeImage(id) {
	var img = document.getElementById("UserImage" + id);
	
	if (img.width > 600) {
		img.width = 600;
	} else if (img.width == 0) {
		setTimeout("ResizeImage('" + id + "')", 200);
	}
}

//검색관련
//function onClickEDENOnSearch() 
//{
//    var SearchWord = document.forms[0].EDENonSearchWord.value;
//    if(SearchWord == false) {
//        alert("검색어를 입력하세요.");
//    }
//    else
//    {
//        window.open("http://search.EDENon.com/index.asp?sp=hellgate&isnet=y&query=" + SearchWord)
//    }
//  
//}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function Operation()
{
    window.open('/Customer/Operation.aspx', 'Operation', 'width=600,height=600');
}




//메인 이벤트베너 롤링
var autoCount   = null;
var timerId     = null;
var iconObj     = document.getElementsByName("pop_img");
var divObj      = document.getElementsByName("pop_div");

function pop_change(idx) {

    for(i = 0; i < iconObj.length; i++) {
        if (idx != i) {
            divObj[i].style.display = "none";
        } else {
            divObj[i].style.display = "block";
        }
    }
}

function autoScroll() {
    if(autoCount == null)
    {
        this.autoCount = 0;
        this.timerId = window.setTimeout("autoScroll()", 2500);
    }
    else
    {
        if(autoCount == iconObj.length -1)
        {
            this.autoCount = 0;
        }
        else
        {
            this.autoCount++;
        }

        pop_change(autoCount);
        this.timerId = window.setTimeout("autoScroll()", 2500);
    }
}

function autoScrollPause() {
    window.clearTimeout(this.timerId);
}

function autoScrollStart() {
    autoScroll();
}

function autoScrollStop(idx) {
    window.clearTimeout(this.timerId);
    pop_change(idx);
}


function click() {
if ((event.button==2) || (event.button==3)) {
alert('Sorry, you cannot use right click button.');
}
}
document.onmousedown=click
// --> 

//!-- Hide from old browsers
if (navigator.appName == "Netscape") {
document.captureEvents(Event.MOUSEDOWN)
document.onmousedown = checkClick
function checkClick(ev) {
if (ev.which != 1) {
alert('Sorry, you cannot use right click button.')
return false
}
}
}
// -->


