//ÇÃ·¡½Ã »ó´Ü ½ºÅ©¸³Æ® URL

function menu(Arg){
   var Arg;
 if (Arg == "0"){
  location.href="/index.php";}//

 else if (Arg == "m1"){
  location.href="/bbs/bbs/write.php?bo_table=patent";}//
 else if (Arg == "11"){
  location.href="/main.php?m1=s11";}//
 else if (Arg == "12"){
  location.href="/main.php?m1=s12";}//
 else if (Arg == "13"){
  location.href="/main.php?m1=s13";}//
 else if (Arg == "14"){
  location.href="/main.php?m1=s14";}//
 else if (Arg == "15"){
  location.href="/main.php?m1=s15";}//

 else if (Arg == "2"){
  location.href="/main.php?m2=s21";}//
 else if (Arg == "21"){
  location.href="/main.php?m2=s21";}//
 else if (Arg == "22"){
  location.href="/main.php?m2=s22";}//
 else if (Arg == "23"){
  location.href="/main.php?m2=s23";}//
 else if (Arg == "24"){
  location.href="/main.php?m2=s24";}//
 else if (Arg == "25"){
  location.href="/main.php?m2=s25";}//

 else if (Arg == "3"){
  location.href="/main.php?m3=s31";}//
 else if (Arg == "31"){
  location.href="/main.php?m3=s31";}//

 else if (Arg == "4"){
  location.href="/main.php?m4=s41";}//

 else if (Arg == "41"){
  location.href="/main.php?m4=s41";}//


 else if (Arg == "5"){
  location.href="/main.php?m5=s51";}//
 else if (Arg == "51"){
  location.href="/main.php?m5=s51";}//
 else if (Arg == "52"){
  location.href="/main.php?m5=s52";}//
 else if (Arg == "53"){
  location.href="/main.php?m5=s53";}//
 else if (Arg == "54"){
  location.href="/main.php?m5=s54";}//

 else if (Arg == "61"){
  location.href="/main.php?m6=s61";}//
 else if (Arg == "62"){
  location.href="/main.php?m6=s62";}//
 
}


// ½ÉÇÃ ¶óÀÌÆ®¹Ú½º È¿°ú ½ÃÀÛ 2009-07-01 ### CSSÆÄÀÏ¿¡µµ °ü·Ã ¼³Á¤°ªÀÌ ÀÖÀ½
function SLB_show(url, type) 
{ 
	var a = document.getElementById('SLB_film'); 
	var b = document.getElementById('SLB_content'); 
	var c = document.getElementById('SLB_loading'); 
	if(url) { 
		a.style.top = 0; 
		a.style.left = 0; 
		a.style.display = ""; 
		a.style.height = document.body.scrollHeight + 'px'; 
		document.getElementById('SLB_loading').style.display = "block"; 
		SLB_setCenter(c,true); 
		if(type == 'image') { 
			b.innerHTML="<img src=" + url + " class='SLB_center' onload='SLB_setCenter(this);' />"; 
			if(arguments[2])    a.onclick = function () { SLB_show() }; 
			if(arguments[3]) b.innerHTML += "<div class='SLB_caption'>"+ arguments[3] +"</div>";; 
		} else if (type == 'iframe') { 
			b.innerHTML="<iframe src=" + url + " width="+ arguments[2] +" height="+ arguments[3] +" class='SLB_center' marginwidth='0' marginheight='0' frameborder='0' vspace='0' hspace='0' onload='SLB_setCenter(this);' /></iframe>";     
			if(arguments[4]) { 
				b.innerHTML += "<div class='SLB_close' onclick='SLB_show();' title='´Ý±â'>close</div>"; 
			} 
			b.onclick = ''; b.firstChild.style.cursor = 'default'; 
		} else if (type='html'){ 
			b.innerHTML = url; 
			SLB_setCenter(b.firstChild); 
			if(arguments[2]) b.onclick = ''; 
		} 
	} else { 
		a.onclick = ''; 
		a.style.display = "none"; 
		b.innerHTML = ""; 
		b.onclick = function () { SLB_show() }; 
		c.style.display = "none"; 
	} 
} 
 
function SLB_setCenter(obj) { 
	if (obj) { 
		var h = window.innerHeight || self.innerHeight || document.body.clientHeight; 
		var w = window.innerWidth || self.innerWidth || document.body.clientWidth; 
		var l = (document.body.scrollLeft + ((w-(obj.width||parseInt(obj.style.width)||obj.offsetWidth))/2)) ; 
		var t = (document.body.scrollTop + ((h-(obj.height||parseInt(obj.style.height)||obj.offsetHeight))/2)) ; 
		if((obj.width||parseInt(obj.style.width)||obj.offsetWidth) >= w) l = 0; 
		if((obj.height||parseInt(obj.style.height)||obj.offsetHeight) >= h) t = 0; 
		document.getElementById('SLB_content').style.left = l + "px"; 
		document.getElementById('SLB_content').style.top = t + "px"; 
		obj.style.visibility = 'visible'; 
		if(obj.nextSibling && (obj.nextSibling.className == 'SLB_close' || obj.nextSibling.className == 'SLB_caption')) { 
			obj.nextSibling.style.display = 'block'; 
		} 
		if(!arguments[1]) { 
			document.getElementById('SLB_loading').style.display = "none"; 
		} else { 
			obj.style.left = l + "px"; 
			obj.style.top = t + "px"; 
		} 
	} 
} 
var prevOnScroll = window.onscroll; 
window.onscroll = function () { 
	if(prevOnScroll != undefined) prevOnScroll(); 
	document.getElementById('SLB_film').style.height = document.body.scrollHeight + 'px'; 
	document.getElementById('SLB_film').style.width = document.body.scrollWidth + 'px'; 
	SLB_setCenter(document.getElementById('SLB_content').firstChild);          
} 
var prevOnResize = window.onresize;  
window.onresize = function () { 
	if(prevOnResize != undefined) prevOnResize(); 
	document.getElementById('SLB_film').style.height = document.body.offsetHeight + 'px'; 
	document.getElementById('SLB_film').style.width = document.body.offsetWidth + 'px'; 
	SLB_setCenter(document.getElementById('SLB_content').firstChild);      
} 

// ½ÉÇÃ ¶óÀÌÆ®¹Ú½º È¿°ú ³¡
