<!-- 
var Toggle =1; 
function NEWSstop(chk) 
{   
  Toggle = 0;   
  switch(chk) { 
        case 1: 
          news_scroll.stop(); 
          break; 
        case 2: 
          news_scroll.stop(); 
          break; 
  }     
} 

function NEWSstart(chk)   
{   
  Toggle = 1;   
  switch(chk) { 
        case 1: 
          news_scroll.start(); 
          break; 
        case 2: 
          news_scroll.start(); 
          break; 
  }     
} 

function resizeIF(Id)
{
        var obj = document.getElementById(Id);
        var Body;
        var H, Min;

        // ÃÖ¼Ò ³ôÀÌ ¼³Á¤ (³Ê¹« ÀÛ¾ÆÁö´Â °ÍÀ» ¹æÁö)
        Min = 10;

        // DOM °´Ã¼ ÇÒ´ç
        try
        {
                if (!document.all && obj.contentWindow.document.location.href == 'about:blank') {
                        setTimeout("resizeIF('"+Id+"')", 10);
                        return;
                }

                Body = obj.contentWindow.document.getElementsByTagName('BODY');
                Body = Body[0];

                if (this.Location != obj.contentWindow.document.location.href) {
                        H = Body.scrollHeight + 5;
                        obj.style.height =  (H<Min?Min:H) + 'px';

                        this.Location = obj.contentWindow.document.location.href;
                }
        }
        catch(e)
        {
                setTimeout("resizeIF('"+Id+"')", 10);
                return;
        }

        setTimeout("resizeIF('"+Id+"')", 100);
}


function view_site_size(site_name,widthnum,heightnum){
                remote = window.open("", "window","toolbar=no,menubar=no,scrollbars=no,status=1,width="+widthnum+",HEIGHT="+heightnum);
                remote.location = site_name;
                remote.focus();
}

function view_site_size2(site_name,widthnum,heightnum){
                remote = window.open("", "window","toolbar=yes,menubar=yes,scrollbars=yes,status=1,width="+widthnum+",HEIGHT="+heightnum);
                remote.location = site_name;
                remote.focus();
}  

function view_site_size3(site_name,widthnum,heightnum){
                remote = window.open("", "loginwindow","toolbar=no,menubar=no,scrollbars=no,status=1,width="+widthnum+",HEIGHT="+heightnum);
                remote.location = site_name;
                remote.focus();
}

    wi=470;
    hi=290;
	var k = '';
    function BoxWindows() {
	    for (var i=0; i < document.form1.content.length; i++) {
	        if (document.form1.content[i].checked == true) {k="check";}
		}
		if (!k) {alert('¼³¹® Ç×¸ñÁß ÇÏ³ª¸¦ ¼±ÅÃÇÏ¿© ÁÖ½Ê½Ã¿ä'); return false;}
		else {
	        window.open('', 'box','width='+wi+',height='+hi+',marginwidth=0,marginheight=0,resizable=1,scrollbars=1'); return true;
		}
    }

    function BoxWindows2(openurl) {
        window.open(openurl, 'box','width='+wi+',height='+hi+',marginwidth=0,marginheight=0,resizable=1,scrollbars=1');
    }

//--> 
