          <!--

function GoPage(code) {
	if ( !code )						{	window.location = "/";	}
	else if ( code == "main" )			{	window.location = "/";		}
	else if ( code == "eng" )			{	window.location = "/eng/index.php";		}
	
	
	//1. È¸»ç¼Ò°³
	else if ( code == "info01" )			{	window.location = "/doc/info01.html?part=1"; }
	else if ( code == "info02" )		    {	window.location = "/doc/info02.html?part=2"; }
	else if ( code == "info05" )		    {	window.location = "/doc/info05.html?part=3"; }
	else if ( code == "info06" )		    {	window.location = "/doc/info06.html?part=4"; }
	else if ( code == "info07" )		    {	window.location = "/doc/info07.html?part=5"; }
    else if ( code == "sol04" )	  	    {	window.location = "/bbs/bbs/board.php?bo_table=info05"; }
	else if ( code == "sol05" )	  	    {	window.location = "/bbs/bbs/board.php?bo_table=info06"; }	
	
	//2. »ý»êÁ¦Ç°
	else if ( code == "pro01" ) 		 	{	window.location = "/doc/pro01.html?part=1"; }//{	window.location = "/bbs/bbs/board.php?bo_table=info03&part=1"; }
	else if ( code == "pro02" )	    	{	window.location = "/bbs/bbs/board.php?bo_table=info0321&part=2"; }
	else if ( code == "pro022" )			{	window.location = "/bbs/bbs/board.php?bo_table=info0322&part=2"; }
	else if ( code == "pro023" )			{	window.location = "/bbs/bbs/board.php?bo_table=info0323&part=2"; }
	else if ( code == "pro024" )			{	window.location = "/bbs/bbs/board.php?bo_table=info0324&part=2"; }


	
	//3. Solar Cell Wafer
	else if ( code == "sol01" )	 	    {	window.location = "/doc/sol01.html?part=1"; }
	else if ( code == "sol02" )	  	    {	window.location = "/doc/sol02.html?part=2"; }
	else if ( code == "sol03" )	 	    {	window.location = "/bbs/bbs/board.php?bo_table=sol01&part=3"; }
	
	
	
	//4. Àç¹«¸®Æ÷Æ®
	else if ( code == "cash01" )			{	window.location = "/doc/cash01.html?part=1"; }
	else if ( code == "cash02" )			{   window.open('http://kind.krx.co.kr/');  }
	else if ( code == "cash03" )			{   window.open('http://kind.krx.co.kr/');  }
	else if ( code == "cash04" )			{	window.location = "/doc/cash04.html?part=4"; }
	
	
	//5. IR ¸®Æ÷Æ®
	else if ( code == "rep01" )	 	   {    window.open('http://kind.krx.co.kr/');  }
	else if ( code == "rep02" )	  	    {	window.location = "/bbs/bbs/board.php?bo_table=rep02&part=2"; }
	else if ( code == "rep03" )	 	    {	window.location = "/bbs/bbs/board.php?bo_table=rep03&part=3"; }

	
    // È¸¿ø°ø°£
	else if ( code == "member01" )	 	    {	window.location = "/bbs/bbs/login.php?part=1"; }
	else if ( code == "member02" )	  	    {	window.location = "/bbs/bbs/register.php?part=2"; }
	else if ( code == "member03" )	 	    {	window.location = "/bbs/bbs/member_confirm.php?url=register_form.php&part=3"; }
	else if ( code == "member04" )	  	    {	window.location = "/bbs/bbs/member_confirm.php?url=member_leave.php&part=4"; }
	
	 //etc
    else if ( code == "mail" )			{	window.location = "mailto:@naver.com"; }
	else if ( code == "sitemap" )		{	window.location = "/doc/sitemap.html?part=1";  	}
	else if ( code == "service01" )		{	window.location = "";  	}
	
	
	
}

//

/*
var bNetscape4plus = (navigator.appName == "Netscape" && navigator.appVersion.substring(0,1) >= "4");
var bExplorer4plus = (navigator.appName == "Microsoft Internet Explorer" && navigator.appVersion.substring(0,1) >= "4");
function CheckUIElements(){
        var yMenuFrom, yMenuTo, yButtonFrom, yButtonTo, yOffset, timeoutNextCheck;

        if ( bNetscape4plus ) { 
                yMenuFrom   = document["divMenu"].top;
                yMenuTo     = top.pageYOffset + 62;
        }
        else if ( bExplorer4plus ) {
                yMenuFrom   = parseInt (divMenu.style.top, 10);
                yMenuTo     = document.body.scrollTop + 200;//·¹ÀÌ¾îÀÇ top°ªÀº ÆäÀÌÁö ¿­¾úÀ»¶§ ½½¶óÀÌµù ½ÃÀÛÁ¡ÀÌ°í ¿©±â ¿·¿¡ ¼ýÀÚ´Â ÃÖÁ¾ÀûÀ¸·Î Å¾À¸·ÎºÎÅÍ µµÂøÇÏ´Â °÷
        }

        timeoutNextCheck = 0;

        if ( Math.abs (yButtonFrom - (yMenuTo + 152)) < 6 && yButtonTo < yButtonFrom ) {
                setTimeout ("CheckUIElements()", timeoutNextCheck);
                return;
        }

        if ( yButtonFrom != yButtonTo ) {
                yOffset = Math.ceil( Math.abs( yButtonTo - yButtonFrom ) / 10 );
                if ( yButtonTo < yButtonFrom )
                        yOffset = -yOffset;

                if ( bNetscape4plus )
                        document["divLinkButton"].top += yOffset;
                else if ( bExplorer4plus )
                        divLinkButton.style.top = parseInt (divLinkButton.style.top, 10) + yOffset;

                timeoutNextCheck = 10;
        }
        if ( yMenuFrom != yMenuTo ) {
                yOffset = Math.ceil( Math.abs( yMenuTo - yMenuFrom ) / 20 );
                if ( yMenuTo < yMenuFrom )
                        yOffset = -yOffset;

                if ( bNetscape4plus )
                        document["divMenu"].top += yOffset;
                else if ( bExplorer4plus )
                        divMenu.style.top = parseInt (divMenu.style.top, 10) + yOffset;

                timeoutNextCheck = 10;
        }

        setTimeout ("CheckUIElements()", timeoutNextCheck);
}

function OnLoad()
{
        var y;
        if ( top.frames.length )
        if ( bNetscape4plus ) {
                document["divMenu"].top = top.pageYOffset + 50;//À¥¿¡ ¶ç¿üÀ»¶§ ½ÃÀÛÁ¡
                document["divMenu"].visibility = "visible";
        }
        else if ( bExplorer4plus ) {
                divMenu.style.top = document.body.scrollTop + 250;//À¥¿¡ ¶ç¿üÀ»¶§ ½ÃÀÛÁ¡
                divMenu.style.visibility = "visible";
        }
        CheckUIElements();
        return true;
}
*/
function MM_swapImgpricetore() { //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.0
  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 && document.getElementById) x=document.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 open_win(val, wname, wopt, menu) {
	var newopt = "", wHeight = 0, wWidth = 0;
	if (wopt != undefined) {
		var woptlist = wopt.replace(/ /g, "").split(",");
		for (var i in woptlist) {
			if (woptlist[i].match(/^height=/i)) {
				wHeight = parseInt(woptlist[i].substr(7),10);
				if (!isNaN(wHeight)) newopt += "top=" + Math.floor((screen.availHeight - wHeight) / 2) + ",";
			}
			if (woptlist[i].match(/^width=/i)) {
				wWidth = parseInt(woptlist[i].substr(6),10);
				if (!isNaN(wWidth)) newopt += "left=" + Math.floor((screen.availWidth - wWidth) / 2) + ",";
			}
		}
	}

	url = val + "?" + menu;
	window.open(url, wname, newopt + wopt); 
} 
//-->

//<!--ÆË¾÷
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
//-->