/*  top  */
function tm01() {location.href = "/kor/index.htm";}
function tm02() {location.href = "mailto:yuto1979@nate.com";}
function tm03() {location.href = "/kor/site01.htm";}
function tm04() {location.href = "#";}

function bn01() {location.href = "#";}
function bn02() {location.href = "/kor/glob05.htm";}
function bn03() {location.href = "/kor/prac08.htm";}
function bn04() {location.href = "/kor/prac02.htm";}
function bn05() {location.href = "/kor/prac03.htm";}
function bn06() {location.href = "/kor/prac07.htm";}
function bn07() {location.href = "#";}
function bn08() {location.href = "/kor/prac12.htm";}

/*  menu  */
function m10() {location.href = "/kor/comp01.htm";}
function m11() {location.href = "/kor/comp01.htm";}
function m12() {location.href = "/kor/comp02.htm";}
function m13() {location.href = "/kor/glob02.htm";}
//function m14() {location.href = "http://www.giplaw.co.kr";}
function m14() {location.href = "/kor/comp03.htm";}
function m15() {location.href = "/kor/comp04.htm";}
function m151() {location.href = "/kor/comp04.htm"}
function m152() {location.href = "/kor/comp04.htm#2";}
function m16() {location.href = "/kor/comp05.htm";}


function m20() {location.href = "/kor/glob01.htm";}

function m21() {window.open("http://www.giplaw.com");}
function m22() {location.href = "/kor/glob05.htm";}
function m23() {location.href = "/kor/glob04.htm";}
function m28() {location.href = "/kor/glob02.htm";}


function m30() {location.href = "/kor/prac01.htm";}
function m31() {location.href = "/kor/prac01.htm";}
function m32() {location.href = "/kor/prac02_02.htm";}
function m33() {location.href = "/kor/prac02.htm";}
function m34() {location.href = "/kor/prac03.htm";}
function m341() {location.href = "/kor/prac05.htm";}
function m342() {location.href = "/kor/prac06.htm";}
function m35() {location.href = "/kor/prac07.htm";}
function m36() {location.href = "/kor/prac08.htm";}
function m361() {location.href = "/kor/prac09.htm";}
function m362() {location.href = "/kor/prac10.htm";}
function m37() {location.href = "/kor/prac11.htm";}
function m371() {location.href = "/kor/prac11.htm";}
function m372() {location.href = "/kor/prac12.htm";}
function m38() {location.href = "/kor/prac12.htm";}







function m40() {location.href = "/kor/news01.htm";}
function m41() {location.href = "/kor/news01.htm";}
function m411() {location.href = "/kor/news01.htm";}
function m412() {location.href = "/kor/news02.htm";}
function m413() {location.href = "/kor/news03.htm";}
function m42() {location.href = "/kor/news05.htm";}
function m421() {location.href = "/kor/news05.htm";}
function m422() {location.href = "/kor/news10.htm";}
function m43() {location.href = "/kor/news06.htm";}
function m431() {location.href = "/kor/news06.htm";}
function m432() {location.href = "/kor/news07.htm";}
function m433() {location.href = "/kor/news08.htm";}
//function m44() {location.href = "/kor/news09.htm";}



function m50() {location.href = "/kor/coun01.htm";}
function m51() {location.href = "/kor/coun01.htm";}
function m52() {location.href = "/kor/coun02.htm";}
function m53() {location.href = "/kor/coun07.htm";}
function m54() {location.href = "/kor/coun04.htm";}
function m55() {location.href = "/kor/coun06.htm";}
function m56() {location.href = "/kor/coun05.htm";}


function m61() {location.href = "/kor/site01.htm";}












/******************************************************************
	title : mEmbed v1.1
	contents : IEÆÐÄ¡·Î ÀÎÇÑ embed ÅÂ±×¸¦ js·Î Ãâ·ÂÇÑ´Ù.
	ÀÌ ¼Ò½º°¡ µé¾î°¡´Â JSÆÄÀÏÀº ¹Ýµå½Ã src·Î ¿ÜºÎ¿¡¼­ È£ÃâµÇ¾î¾ßÇÏ°í
	<script>mEmbed("src=source.swf","width=100","height=100", "wmode=Tranpsarent");</script>
	¿Í °°Àº Çü½ÄÀ¸·Î ÇÃ·¡½¬ ÅÂ±×¸¦ ´ë½ÅÇØ¼­ ³Ö¾îÁØ´Ù.
	mGET ÇÔ¼ö´Â µÎ¹è¿­À» ÀÌ¿ëÇÑ Å°°ªÀÇ Data ¸¦ °¡Á®¿À´Â ÇÔ¼ö.(mEmbed¿¡ ÇÊ¿ä)
	ex) srcdata = mGET(key,value,'src'); -> phpÀÇ $srcdata = $array['src'];
	by : http://blog.daum.net/battlej
	******************************************************************/

	function mGET(arrayKey, arrayValue, Value) {
		count = arrayKey.length;
		for(i=0;i<count;i++) {
			if(arrayKey[i]==Value) {
				return arrayValue[i];
				break;
			}
		}
	}

	function mEmbed() {
		var key = new Array();
		var value = new Array();
		var contents;
		var embed_type;
		var error_check=0;
		var i, j;
		var count;
		var data;
		var temp;
		if(mEmbed.arguments.length==1) {
			contents = mEmbed.arguments[0];
		} else {
			for(i=0;i<mEmbed.arguments.length;i++) {
				temp = mEmbed.arguments[i].replace(/"|'/g,"");
				data = temp.split('=');
				key[i] = data[0];
				value[i] = data[1];
				count = data.length;

				for(j=2;j<count;j++) {
					value[i] += '=' + data[j];
				}
			}

			contents='';
			srcdata = mGET(key,value,'src');

			if(/\.(swf)$/.test(srcdata)) {
				embed_type = 1;
			} else if(/\.(mov|avi|wma|wmv)$/.test(srcdata)) {
				embed_type = 2;
			}

			var classid = mGET(key,value,'classid');
			var codebase = mGET(key,value,'codebase');

			if(embed_type==1) {
				classid = 'clsid:D27CDB6E-AE6D-11cf-96B8-444553540000';
				codebase = 'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0';
			} else if(embed_type==2) {
				classid = 'clsid:22D6F312-B0F6-11D0-94AB-0080C74C7E95';
				codebase = 'http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=6,4,5,715';
			}

			if(classid && codebase) {
				contents += '<object';
				if(classid) {
					contents += ' classid="' + classid + '"';
				}
				if(codebase) {
					contents += ' codebase="' + codebase + '"';
				}
				count = key.length;
				for(i=0;i<count;i++) {
					if(value[i]!='') {
						if(key[i]!='src') {
							contents += ' ' + key[i] + '="' + value[i] + '"';
						}
					}
				}
				contents += '>';
				for(i=0;i<count;i++) {
					if(value[i]!='') {
						if(embed_type==1 && key[i]=='src') {
							contents += '<param name="movie" value="' + value[i] + '" />';
						} else {
							contents += '<param name="' + key[i] + '" value="' + value[i] + '" />';
						}
					}
				}
			}
			count = key.length;
			contents += '<embed';
			for(i=0;i<count;i++) {
				if(value[i]!='') {
					contents += ' ' + key[i] + '="' + value[i] + '"';
				}
			}
			contents += '>';
			contents += '</embed>';
			if(classid && codebase) {
				contents += '</object>';
			}
		}
		document.write(contents);
	}





