// ¸¶ÀÌÄÚ½º ·¹ÀÌ¾î ¶ç¿ì±â
			function showmycourse() {
				var pntX= window.event.x;
				document.getElementById('mycourse').style.pixelLeft= pntX - 3;
				document.getElementById('mycourse').style.visibility = "visible" ;
			}
			
			function hidemycourse() {
				document.getElementById('mycourse').style.visibility = "hidden" ;
			}
			
			function select_myc(mtcode,sclist,polist,cuname) {
				
				Smt = document.Form1;
				Smt._ctl0_ddlmt.selectedIndex = -1;
				for(i=0;i<Smt._ctl0_ddlmt.length;i++)
				{
					if(mtcode == Smt._ctl0_ddlmt.options[i].value)
					{
						Smt._ctl0_ddlmt.selectedIndex = i;
						Smt._ctl0_sc.value = sclist;
						Smt._ctl0_po.value = polist;
						Smt.cuname.value = cuname;
						break;					
						
					}
				}
				hidemycourse();
			}
			
			function showmap() {
								
				var smap = document.getElementById('mtmap');
				var smapbtn = document.getElementById('_ctl0_mapshowbtn');
				var hmapbtn = document.getElementById('_ctl0_maphidebtn');
				smap.style.display = 'block';
				//Áöµµ¸¦ SHOWÇßÀ» °æ¿ì Áöµµº¸±âTR HIDE Áöµµ°¨Ãß±â TR SHOW 			
				smapbtn.style.display = 'none';						
				hmapbtn.style.display = 'block';						
				
			}			
			
			function hidemap() {
				
				var smap = document.getElementById('mtmap');
				var smapbtn = document.getElementById('_ctl0_mapshowbtn');
				var hmapbtn = document.getElementById('_ctl0_maphidebtn');
				smap.style.display = 'none';
				//Áöµµ¸¦ HIDEÇßÀ» °æ¿ì Áöµµº¸±âTR SHOW Áöµµ°¨Ãß±â TR HIDE 			
				smapbtn.style.display = 'block';						
				hmapbtn.style.display = 'none';							
			}		
			
			function mapinit()
			{	
				var sclist = document.getElementById('_ctl0_sc');
				var SmtFlash = document.getElementById('Smt');
				var fData = "sc="+sclist.value;
				SmtFlash.SetVariable("rValue",fData);
			
			}
