if (navigator.appName.indexOf("Microsoft Internet Explorer") != 0){
  //½º¸¶Æ®ÆùÁß ¾ÆÀÌÆùÀº ÀÌ ¿¡·¯¸Þ¼¼Áö°¡ ¶á´Ù.  ¾Æ¿¹ ÀÌ ¸Þ¼¼Áö´Â ¾ø¾ÖÀÚ 2011-05-06 Á¶Á¦´ö
   //alert("Cannot properly view this site with your browser.\nPlease, use MS Internet Explorer...");
}

function allblur() {
for (i = 0; i < document.links.length; i++)
document.links[i].onfocus = document.links[i].blur;
}
document.onfocusin = allblur;

function click(e) {
	if (document.all) {
		if (event.button==2||event.button==3) {
			oncontextmenu='return false';
		}
	}
	if (document.layers) {
		if (e.which == 3) {
			oncontextmenu='return false';
		}
	}
}
if (document.layers) {
	document.captureEvents(Event.MOUSEDOWN);
}
document.onmousedown=click;
document.oncontextmenu = new Function("return false;")

    var hellotext=""
    var thetext=""
    var started=false
    var step=0
    var times=1
    function scroll()
    {
      times--
      if (times==0)
      { 
        if (started==false)
        {
          started = true;
          window.status = hellotext;
          setTimeout("anim()",1); 
        }
        thetext = hellotext;
      }
    }
    function showstatustext(txt)
    {
      thetext = txt;
      setTimeout("scroll()",4000)
      times++
    }

    function anim()
    {
      step++
      if (step==7) {step=1}
      if (step==1) {window.status=''+thetext+''}
      if (step==2) {window.status=''+thetext+''}
      if (step==3) {window.status=''+thetext+''}
      if (step==4) {window.status=''+thetext+''}
      if (step==5) {window.status=''+thetext+''}
      if (step==6) {window.status=''+thetext+''}
      setTimeout("anim()",200);
    }

function loginFormCheck(form) {

	if (form.user_id.value == "") {
		alert("¾ÆÀÌµð¸¦ ÀÔ·ÂÇÏ¿© ÁÖ½Ê½Ã¿À!!");
		form.user_id.focus();
		return false;
	}

	if (form.password.value == "") {
		alert("ºñ¹Ð¹øÈ£¸¦ ÀÔ·ÂÇÏ¿© ÁÖ½Ê½Ã¿À!!");
		form.password.focus();
		return false;
	}

}

function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}

var caption = 'Copyright ¨Ï 2010 Wilson Learning Korea. All Rights Reserved.'; 

function wstatus() 
{ 
    window.status = caption; 
	timerID= setTimeout("wstatus()", 10); 
}

wstatus();

