function NetReader(Code){

	if (!window.ActiveXObject) {
	/*}
	else{*/

		if ( Otder_browser == "F" ){	//!IE일경우 비활성화이면 리턴
		alert("NetLight는 Internet  Explorer 에서만 지원합니다.");
			if (!window.ActiveXObject) return;
		}
	}

	var value = NetReader.arguments;	
	
	//초기화	
	if( Code == "ReSet" ){		//초기화	
		if(readCookie("VoiceStart") == "start"){
			setCookie("VoiceSpeed", "3", 1);
			NetLightCOM.VoiceSpeed="3";
			setCookie("VoiceVolum", "3", 1);
			NetLightCOM.VoiceVolume="3";
		}
			setCookie("bgColorIndex", 0, 1);
			f_setBgColor("0");
			/*setCookie("fontSize", "12", 1);
			f_fontreset("12");*/
			setCookie("fontColorIndex", 0, 1);
			f_setFontColor("0");
			setCookie("zoomVal", "100%", 7);
			zoomInOut("");
	}	

			if(KeyEvent_F == 1){ //사이트 폭주 등 임시로 이벤트를 막고 싶을때 사용
				//음성시작
				if( Code == "VoiceStart" ){

					if( typeof(DynamicNetLightCOM) == "undefined" ){
						if (readCookie("VoiceStart") == "stop"){
							setCookie("VoiceStart", "start" , 1);
							
						}
					}

					if( FrameLength == 2 )
						eval(FrameMainName +"f_VoiceStart('start')");
					else
						f_VoiceStart('start');
								
						
				}
			
				//음성중지
				if( Code == "VoiceStop" ){
					if( FrameLength == 2 )
						eval(FrameMainName +"f_VoiceStart('stop')");						
					else
						f_VoiceStart('stop');
			
			
				}

				//네비게이션 시작
				
				if( Code == "NaviStart")
				{
					
					if( typeof(DynamicNetLightCOM) == "undefined" ){
						if (readCookie("NaviStart") == "stop"){
							setCookie("VoiceStart", "start" , 1);
							setCookie("NaviStart", "start" , 1);
							
						}
					}
					
					if ( FrameLength == 2)
						eval(FrameMainName + "f_NaviStart('start')");
					else
						f_NaviStart('start');
				}

				//네비게이션 중지
				if ( Code == "NaviStop")
				{
					if ( FrameLength == 2)
						eval(FrameMainName + "f_NaviStart('stop')");
					else
						f_NaviStart('stop');	
				}
				
			
				//음성볼륨 업
				if( Code == "VolumUp" ){
					if( typeof(DynamicNetLightCOM) != "undefined" ){		
							if(DynamicNetLightCOM.VoiceActive  == true || DynamicNetLightCOM.NavigationActive  == true){
								if( FrameLength == 2 )
									eval(FrameMainName +"f_VoiceVolume('up');");
								else
									f_VoiceVolume('up');
							}else{
								if(SpaceLang == "kor"){
									alert("음성서비스중일때만 동작합니다.");
								}else{
									alert("NetLight works with Voice-service.");
								}
							}
					}else{
						if(SpaceLang == "kor"){
							alert("음성서비스중일때만 동작합니다.");
						}else{
							alert("NetLight works with Voice-service.");
						}
					}
				}
			
				//음성볼륨 다운
				if( Code == "VolumDown" ){
					if( typeof(DynamicNetLightCOM) != "undefined" ){
							if(DynamicNetLightCOM.VoiceActive  == true || DynamicNetLightCOM.NavigationActive  == true){
								if( FrameLength == 2 )
									eval(FrameMainName +"f_VoiceVolume('down');");
								else
									f_VoiceVolume('down');
							}else{
								if(SpaceLang == "kor"){
									alert("음성서비스중일때만 동작합니다.");
								}else{
									alert("NetLight works with Voice-service.");
								}
							}
					}else{
						if(SpaceLang == "kor"){
							alert("음성서비스중일때만 동작합니다.");
						}else{
							alert("NetLight works with Voice-service.");
						}
					}
				}
			
				//음성속도 업
				if( Code == "SpeedUp" ){
					if( typeof(DynamicNetLightCOM) != "undefined" ){
							if(DynamicNetLightCOM.VoiceActive  == true || DynamicNetLightCOM.NavigationActive  == true){
								if( FrameLength == 2 )
									eval(FrameMainName +"f_VoiceSpeed('up');");
								else
									f_VoiceSpeed('up');
							}else{
								if(SpaceLang == "kor"){
									alert("음성서비스중일때만 동작합니다.");
								}else{
									alert("NetLight works with Voice-service.");
								}
							}
					}else{
						if(SpaceLang == "kor"){
							alert("음성서비스중일때만 동작합니다.");
						}else{
							alert("NetLight works with Voice-service.");
						}
					}
				}
			
				//음성속도 다운
				if( Code == "SpeedDown" ){
					if( typeof(DynamicNetLightCOM) != "undefined" ){
							if(DynamicNetLightCOM.VoiceActive  == true || DynamicNetLightCOM.NavigationActive  == true){
								if( FrameLength == 2 )
									eval(FrameMainName +"f_VoiceSpeed('down');");
								else
									f_VoiceSpeed('down');
							}else{
								if(SpaceLang == "kor"){
									alert("음성서비스중일때만 동작합니다.");
								}else{
									alert("NetLight works with Voice-service.");
								}
							}
					}else{
						if(SpaceLang == "kor"){
							alert("음성서비스중일때만 동작합니다.");
						}else{
							alert("NetLight works with Voice-service.");
						}
					}
				}
				
				//글자크기 크게
				if( Code == "FontUp" ){
					if( FrameLength == 2 )
						eval(FrameMainName +"f_fontPlus();");
					else
						f_fontPlus();
				}
			
				//글자크기 작게
				if( Code == "FontDown" ){
					if( FrameLength == 2 )
						eval(FrameMainName +"f_fontMinus();");
					else
						f_fontMinus();
				}				
			
				//화면크기 크게
				if( Code == "ZoomUp" ){
					if( FrameLength == 2 )
						eval(FrameMainName +"zoomInOut('in');");			
					else
						zoomInOut('in');
				}
			
				//화면크기 작게
				if( Code == "ZoomDown" ){
					if( FrameLength == 2 )
						eval(FrameMainName +"zoomInOut('out');");
					else
						zoomInOut('out');
				}
			
				//글자색 변경
				if( Code == "FontColor" ){
					if( FrameLength == 2 )
						eval(FrameMainName +"f_setFontColor("+ value[1] +");");
					else
						f_setFontColor();
				}
			
				//바탕색 변경
				if( Code == "BgColor" ){
					if( FrameLength == 2 )
						eval(FrameMainName +"f_setBgColor("+ value[1] +");");
					else
						f_setBgColor();
				}
			
			}else{
				if(KeyEvent_F_F == 1){
				alert(KeyEvent_F_M);
				}
			}	
			
}