	function bookAreaDraw(){
//		bookLeft = (966-zoomWidth[0]*2)/2;
//		bookTop = (768-zoomHeight[0])/2+30;
		bookLeft = top.BOOK_AREA_LEFT;
		bookTop = top.BOOK_AREA_TOP;
		
//		var _visible = (isFlashBook ? 'hidden' : 'visible');
		var _visible = 'visible';
		document.writeln("<DIV ID='viewLayer' style='position:absolute;left="+eval(bookLeft+0)+";top="+eval(bookTop+0)+";width="+eval(zoomWidth[0]*2)+";height="+eval(zoomHeight[0])+";z-index:"+BOOK_AREA_ZINDEX+";overflow:hidden;visibility:"+_visible+"'>");
		document.writeln("<iframe name='view' SRC='BOOK.HTM' width=1024 height=800 frameborder=0 border=0 framespacing=0>");
		document.writeln("</iframe>");
		document.writeln("</DIV>");	
	}

	function goFieldDraw(){
		document.writeln("<DIV style='overflow:visible;position:absolute;left="+top.GO_FIELD_LEFT+";top="+top.GO_FIELD_TOP+";width="+top.GO_FIELD_WIDTH+";height="+top.GO_FIELD_HEIGHT+";FONT-SIZE: 8pt;' >");
		document.write("<input type='text' size=2 value="+eval(1-coverPages+startPage)+" ID='page' class='loginbox' onKeyDown='top.enterCheck();' onClick=\"page.value=''\"> / ");
		document.write(eval(totalPage+1-coverPages));
		document.write("</DIV>");
	}
	
	function parsing(_dir){	
    	for(inx = 0;inx < objCount; inx++){    		
    		if(!objName[inx]) continue;

    		if(_dir=="main" && inx==0){
    			window.resizeTo(objWidth[inx]+10,objHeight[inx]+25);
    			
    			_loading_table.width = objWidth[inx];
    			_loading_table.height = objHeight[inx];
    		}
    		
    		if(functionOnLoad[inx]&&functionOnLoad[inx].length>0){
    			if(functionOnLoad[inx]=="bookAreaDraw()"){
    				top.BOOK_AREA_LEFT = objX[inx];
    				top.BOOK_AREA_TOP = objY[inx];
    				top.BOOK_AREA_WIDTH = objWidth[inx];
    				top.BOOK_AREA_HEIGHT = objHeight[inx];
    				top.BOOK_AREA_ZINDEX = objZindex[inx];
					
    				bookAreaDraw();
    				continue;
    			}else if(functionOnLoad[inx]=="goFieldDraw()"){
    				top.GO_FIELD_LEFT = objX[inx];
    				top.GO_FIELD_TOP = objY[inx];
    				top.GO_FIELD_WIDTH = objWidth[inx];
    				top.GO_FIELD_HEIGHT = objHeight[inx];
    				top.GO_FIELD_ZINDEX = objZindex[inx];
    				goFieldDraw();
    				continue;
    			}else if(functionOnLoad[inx].indexOf("loadTextFieldWithOption")>=0){
    				var textFieldID = functionOnLoad[inx].substring(25,functionOnLoad[inx].length-2);
    				var textSize = textFieldID.substring(0,2);
    				var textColor = textFieldID.substring(2,9);
    				var backColor = textFieldID.substring(9,16);
    				var textFieldID = textFieldID.substring(16,textFieldID.length);
//    				alert("'"+ textSize+"' '"+textColor+"' '"+backColor+"' '"+textFieldID+"'");
    				document.writeln("<DIV style='overflow:visible;position:absolute;left="+objX[inx]+";top="+eval(objY[inx]-6)+";width:"+objWidth[inx]+";height:"+objHeight[inx]+";z-index:30'>");
    				if(textFieldID=="searchField"){
	    				document.writeln("	<input type='text' name="+textFieldID+" style='background-color: "+backColor+";color: "+textColor+";font-size: "+textSize+"px;border-style: none;width:"+objWidth[inx]+";height:"+objHeight[inx]+"' onKeyPress='searchKeyCheck()'>");
	    			}else{
	    				document.writeln("	<input type='text' name="+textFieldID+" style='background-color: "+backColor+";color: "+textColor+";font-size: "+textSize+"px;border-style: none;width:"+objWidth[inx]+";height:"+objHeight[inx]+"' >");
	    			}
    				document.writeln("</DIV>");
    				continue;
    			}else if(functionOnLoad[inx].indexOf("loadTextField")>=0){
    				var textFieldID = functionOnLoad[inx].substring(15,functionOnLoad[inx].length-2);
    				document.writeln("<DIV style='overflow:hidden;position:absolute;left="+objX[inx]+";top="+objY[inx]+";width:"+objWidth[inx]+";height:"+objHeight[inx]+";z-index:30'>");
    				if(textFieldID=="searchField"){
	    				document.writeln("	<input type='text' name="+textFieldID+" style='background-color: #000001;filter: Chroma(Color=#000001);border-style: none;width:"+objWidth[inx]+";height:"+objHeight[inx]+"'   onKeyDown='event.cancelBubble = true'  onKeyPress='searchKeyCheck()'>");
	    			}else{
	    				document.writeln("	<input type='text' name="+textFieldID+" style='background-color: #000001;filter: Chroma(Color=#000001);border-style: none;width:"+objWidth[inx]+";height:"+objHeight[inx]+"'   onKeyDown='event.cancelBubble = true' >");
	    			}
    				document.writeln("</DIV>");
    				continue; 
    			}else if(functionOnLoad[inx].indexOf("loadTextArea")>=0){
    				var textFieldID = functionOnLoad[inx].substring(14,functionOnLoad[inx].length-2);
    				var textFieldID = functionOnLoad[inx].substring(14,functionOnLoad[inx].length-2);
    				document.writeln("<DIV style='overflow:hidden;position:absolute;left="+objX[inx]+";top="+objY[inx]+";width:"+objWidth[inx]+";height:"+objHeight[inx]+";z-index:30'>");
    				document.writeln("	<textarea name="+textFieldID+" rows="+eval(objHeight[inx]/15)+" style='background-color: #000001;filter: Chroma(Color=#000001);border-style: none;width:"+objWidth[inx]+";height:"+objHeight[inx]+"'  onKeyDown='event.cancelBubble = true' ></textarea>");
    				document.writeln("</DIV>");
    				continue;   				
    			}else if(functionOnLoad[inx].indexOf("loadCheckBox")>=0){
    				var checkBoxID = functionOnLoad[inx].substring(14,functionOnLoad[inx].length-2);    				
    				document.writeln("<DIV style='overflow:hidden;position:absolute;left="+objX[inx]+";top="+objY[inx]+";width:"+objWidth[inx]+";height:"+objHeight[inx]+";z-index:30'>");
    				document.writeln("<DIV style='position:absolute;top:-4'>");
    				document.writeln("	<input type='checkBox' id="+checkBoxID+" style='background-color: #000001;filter: Chroma(Color=#000001);border-style: none;width:"+objWidth[inx]+";height:"+objHeight[inx]+"'  onKeyDown='event.cancelBubble = true' >");
    				document.writeln("</DIV>");
    				document.writeln("</DIV>");
    				continue;
    			}else if(functionOnLoad[inx] == "loadPrintAllPage()"){    				
    				document.writeln("<DIV style='overflow:hidden;position:absolute;left="+objX[inx]+";top="+objY[inx]+";width:"+objWidth[inx]+";height:"+objHeight[inx]+";z-index:30'>");
    				document.writeln("	<NOBR>");
    				document.writeln("		<img id='printImg1' src='' width="+eval(objWidth[inx]/2)+" height ="+objHeight[inx]+">");
    				document.writeln("		<img id='printImg2' src='' width="+eval(objWidth[inx]/2)+" height ="+objHeight[inx]+">");
    				document.writeln("	</NOBR>");    				
    				document.writeln("</DIV>");
    				continue;
    			}else if(functionOnLoad[inx] == "loadPrintHalfPage()"){
    				document.writeln("<DIV style='overflow:hidden;position:absolute;left="+objX[inx]+";top="+objY[inx]+";width:"+objWidth[inx]+";height:"+objHeight[inx]+";z-index:30'>");
    				document.writeln("	<NOBR>");
    				document.writeln("		<img id='printHalfImg' src='' width="+objWidth[inx]+" height ="+objHeight[inx]+">");
    				document.writeln("	</NOBR>");    				
    				document.writeln("</DIV>");
    				continue;    				
    			}else if(functionOnLoad[inx]=="loadListArea()"){
    				document.writeln("<DIV style='overflow:hidden;position:absolute;left="+objX[inx]+";top="+objY[inx]+";width:"+objWidth[inx]+";height:"+objHeight[inx]+";z-index:30;'>");
    				document.writeln("	<IFRAME name='MENU_LIST_FRAME' id='MENU_LIST_FRAME' src='about:blank' width="+objWidth[inx]+" height="+objHeight[inx]+" frameborder= no bgcolor='#000001' style='filter: Chroma(Color=#000001)'>");
    				document.writeln("	</IFRAME>");
 	  				document.writeln("</DIV>");
    				continue;
    			}else if(functionOnLoad[inx] == "loadResultFrame()"){
    				document.writeln("<DIV style='overflow:hidden;position:absolute;left="+objX[inx]+";top="+objY[inx]+";width:"+objWidth[inx]+";height:"+objHeight[inx]+";z-index:"+objZindex[inx]+";'>");
    				document.writeln("	<IFRAME name='resultFrame' id='resultFrame' src='about:blank' width="+objWidth[inx]+" height="+objHeight[inx]+" frameborder=0 leftmargin='0' topmargin='0' marginwidth='0' marginheight='0'>");
    				document.writeln("	</IFRAME>");
 	  				document.writeln("</DIV>");
 	  				document.writeln("<DIV id='progressLayer' style='position:absolute;left=5;top=71;width=100;height=80;z-index:20;overflow:hidden;z-index:"+objZindex[inx]+"'>");
 	  				document.writeln("	<iframe id='progressFrame' style='width=165;height=20;FILTER:Alpha(Opacity=50,FinishOpacity=50,Style=2)' frameborder=0 border=0 framespacing=0 scrollbars=no leftmargin='0' topmargin='0' marginwidth='0' marginheight='0'></iframe>");
 	  				document.writeln("</DIV>");
    				continue;
    			}else if(functionOnLoad[inx] == "loadSliderPageLayer()"){
 	  				document.writeln("<div id='pageLayer' style='position:absolute; left:"+objX[inx]+"; top:"+objY[inx]+"; width:15; height:10; z-index:30' onMouseUp='pageChanged()'> ");
 	  				document.writeln("  <img src='design/common_images/volume_picker.gif' width='14' height='9'  style='cursor:hand' alt="+STRINGS['SLIDE_PAGE_HANDLE']+"  onMouseDown=\"slideDrag('pageLayer',pageLeft,pageLevel)\"></div> ");
 	  				pageLeft = objX[inx] +4;
 	  				pageLevel = objWidth[inx] -8;
  					continue;
    			}else if(functionOnLoad[inx] == "loadSliderSpeedLayer()"){
 	  				document.writeln("<div id='speedLayer' style='position:absolute; left:"+objX[inx]+"; top:"+objY[inx]+"; width:15; height:10; z-index:30'  onMouseUp='speedChanged()'> ");
 	  				document.writeln("  <img id='speedImg' src='design/common_images/volume_picker.gif' width='14' height='9'  style='cursor:hand' alt="+STRINGS['SLIDE_SPEED_SET_ALT']+" onMouseDown=\"slideDrag('speedLayer',speedLeft,speedLevel)\"></div> ");
 	  				speedLeft = objX[inx] + 4;
 	  				speedLevel = objWidth[inx] - 8;
  					continue;
    			}else if(functionOnLoad[inx] == "loadNavigatorFrame()"){ 
    				document.writeln("<DIV style='position:absolute;left:"+ objX[inx]+";top:"+ objY[inx]+";width:"+objWidth[inx]+";height:"+objHeight[inx]+";FILTER:"+objFilter[inx]+"'>");
    				document.writeln("<table border=0 bgcolor=white>");
    				document.writeln("<tr>");
    				document.writeln("<td align='center' width="+objWidth[inx]+" height="+objHeight[inx]+" border=0>");
					document.writeln("<IFRAME name='zoomRectFr' src='ZOOMRECT.HTM' width="+zoomRectWidth+" height="+zoomRectHeight+" frameborder=0 scrolling=no ></IFRAME>");
	   				document.writeln("</td>");
	   				document.writeln("</tr>");
    				document.writeln("</table>");
 					document.writeln("</DIV>");
    				continue;
    			}else if(functionOnLoad[inx] == "zoomAreaSetting()"){
    				ZOOM_AREA_LEFT = objX[inx];
    				ZOOM_AREA_TOP = objY[inx];
    				ZOOM_AREA_WIDTH = objWidth[inx];
    				ZOOM_AREA_HEIGHT = objHeight[inx];
    				ZOOM_AREA_ZINDEX = objZindex[inx];
    				ZOOM_AREA_FILTER = objFilter[inx];
    				continue;
    			}else if(functionOnLoad[inx] == "menuAreaSetting()"){
    				MENU_AREA_LEFT = objX[inx];
    				MENU_AREA_TOP = objY[inx];
    				MENU_AREA_WIDTH = objWidth[inx];
    				MENU_AREA_HEIGHT = objHeight[inx];    				
    				MENU_AREA_ZINDEX = objZindex[inx];
    				MENU_AREA_VISIBILITY = objVisible[inx];
    				MENU_AREA_FILTER = objFilter[inx];
    				continue;
    			}else if(functionOnLoad[inx] == "sliderAreaSetting()"){
    				SLIDER_AREA_LEFT = objX[inx];
    				SLIDER_AREA_TOP = objY[inx];
    				SLIDER_AREA_WIDTH = objWidth[inx];
    				SLIDER_AREA_HEIGHT = objHeight[inx]; 
    				SLIDER_AREA_ZINDEX = objZindex[inx];
    				SLIDER_AREA_VISIBILITY = objVisible[inx];
    				SLIDER_AREA_FILTER = objFilter[inx];
    				continue;
    			}else if(functionOnLoad[inx] == "mailRecommandAreaSetting()"){
    				MAIL_RECOMMAND_AREA_LEFT = objX[inx];
    				MAIL_RECOMMAND_AREA_TOP = objY[inx];
    				MAIL_RECOMMAND_AREA_WIDTH = objWidth[inx];
    				MAIL_RECOMMAND_AREA_HEIGHT = objHeight[inx];    				
    				MAIL_RECOMMAND_ZINDEX = objZindex[inx];
    				MAIL_RECOMMAND_FILTER = objFilter[inx];
    				continue;
    			}else if(functionOnLoad[inx] == "mailAdminAreaSetting()"){
    				MAIL_ADMIN_AREA_LEFT = objX[inx];
    				MAIL_ADMIN_AREA_TOP = objY[inx];
    				MAIL_ADMIN_AREA_WIDTH = objWidth[inx];
    				MAIL_ADMIN_AREA_HEIGHT = objHeight[inx];
    				MAIL_ADMIN_ZINDEX = objZindex[inx];
    				MAIL_ADMIN_FILTER = objFilter[inx];
    				continue;
    			}else if(functionOnLoad[inx] == "subMenuSearchAreaSetting()"){
    				SUB_MENU_SEARCH_AREA_LEFT = objX[inx];
    				SUB_MENU_SEARCH_AREA_TOP = objY[inx];
    				SUB_MENU_SEARCH_AREA_WIDTH = objWidth[inx];
    				SUB_MENU_SEARCH_AREA_HEIGHT = objHeight[inx];    				
    				SUB_MENU_SEARCH_AREA_ZINDEX = objZindex[inx];
    				SUB_MENU_SEARCH_AREA_VISIBILITY = objVisible[inx];
    				SUB_MENU_SEARCH_AREA_FILTER = objFilter[inx];
    				continue;
    			}else if(functionOnLoad[inx] == "subMenuMailAreaSetting()"){
    				SUB_MENU_MAIL_AREA_LEFT = objX[inx];
    				SUB_MENU_MAIL_AREA_TOP = objY[inx];
    				SUB_MENU_MAIL_AREA_WIDTH = objWidth[inx];
    				SUB_MENU_MAIL_AREA_HEIGHT = objHeight[inx];
    				SUB_MENU_MAIL_AREA_ZINDEX = objZindex[inx];
    				SUB_MENU_MAIL_AREA_FILTER = objFilter[inx];
    				continue;
    			}else if(functionOnLoad[inx] == "subMenuPrintAreaSetting()"){
    				SUB_MENU_PRINT_AREA_LEFT = objX[inx];
    				SUB_MENU_PRINT_AREA_TOP = objY[inx];
    				SUB_MENU_PRINT_AREA_WIDTH = objWidth[inx];
    				SUB_MENU_PRINT_AREA_HEIGHT = objHeight[inx];
    				SUB_MENU_PRINT_AREA_ZINDEX = objZindex[inx];
    				SUB_MENU_PRINT_AREA_FILTER = objFilter[inx];
    				continue;
    			}else if(functionOnLoad[inx] == "navigatorAreaSetting()"){
    				NAVIGATOR_AREA_LEFT = objX[inx];
    				NAVIGATOR_AREA_TOP = objY[inx];
    				NAVIGATOR_AREA_WIDTH = objWidth[inx];
    				NAVIGATOR_AREA_HEIGHT = objHeight[inx];
    				NAVIGATOR_AREA_ZINDEX = objZindex[inx];
    				NAVIGATOR_AREA_FILTER = objFilter[inx];	
    				
    				continue;
    			}else if(functionOnLoad[inx].indexOf("loadExtraPage")>=0){
    				var extraPageSrc = functionOnLoad[inx].substring(15,functionOnLoad[inx].length-1);

    				var commaInx = extraPageSrc.indexOf(",");
    				var commaInx2 = extraPageSrc.lastIndexOf(",");
    				
    				var isHandle = false;
    				var title = "¿ÜºÎÆäÀÌÁö";
    				
    				if(commaInx>=0){
    					if(commaInx==commaInx2){
	    					isHandle = eval(extraPageSrc.substring(commaInx+1,extraPageSrc.length));
	    				}else{
	   						isHandle = eval(extraPageSrc.substring(commaInx+1,commaInx2));
	   						title = extraPageSrc.substring(commaInx2+2,extraPageSrc.length-1);
	    				}
    					extraPageSrc = extraPageSrc.substring(0,commaInx-1);
    					
    				}else{
    					extraPageSrc = extraPageSrc.substring(0,extraPageSrc.length-1);
    				}
    				
    				if(isHandle){
    					document.writeln("<DIV ID="+objName[inx]+"_LAYER style='cursor:move;position:absolute;left:"+objX[inx]+";top:"+objY[inx]+";width;"+objWidth[inx]+";height:"+eval(objHeight[inx]+29)+";visibility:"+objVisible[inx]+";z-index:"+objZindex[inx]+";overflow:hidden' onMousedown=top.MM_dragLayer('"+objName[inx]+"_LAYER','',0,0,0,0,false,true,-1,-1,-1,-1,false,false,0,'',false,'')>");
    					
						document.writeln("<DIV ID=NORMAL_"+objName[inx]+"_LAYER>");
    					document.writeln("<table border=0 cellpadding=0 cellspacing=0 onDblClick='extraMinimize("+objName[inx]+"_LAYER)'>");
    					document.writeln("<tr><td>");
						document.write("<img src='design/common_images/extra_title_bar_left.gif' height=29 width=16>");
						document.write("<img src='design/common_images/extra_title_bar_body.gif' height=29 width="+(eval(objWidth[inx]-58)/2)+">");
						document.write("<img src='design/common_images/extra_title_bar_move.gif' height=29 width=26>");
						document.write("<img src='design/common_images/extra_title_bar_body.gif' height=29 width="+(eval(objWidth[inx]-58)/2 - 35)+">");
						document.write("<img src='design/common_images/extra_title_minimize.gif' height=29 width=15 style='cursor:hand' onMouseover='this.src=\"design/common_images/extra_title_minimize_over.gif\"' onMouseout='this.src=\"design/common_images/extra_title_minimize.gif\"' onClick='extraMinimize("+objName[inx]+"_LAYER)'>");
						document.write("<img src='design/common_images/extra_title_bar_body.gif' height=29 width=5>");
						document.write("<img src='design/common_images/extra_title_close.gif' height=29 width=15  style='cursor:hand' onMouseover='this.src=\"design/common_images/extra_title_close_over.gif\"' onMouseout='this.src=\"design/common_images/extra_title_close.gif\"' onClick='"+objName[inx]+"_LAYER.style.visibility=\"hidden\"'>");
						document.writeln("<img src='design/common_images/extra_title_bar_right.gif' height=29 width=16><br>");
    					document.writeln("</td></tr><table>");
    					document.writeln("</table>");
						document.writeln("<IFRAME ID="+objName[inx]+"_FRAME src='"+extraPageSrc+"' frameborder='no' scroll=auto width="+objWidth[inx]+" height="+objHeight[inx]+" style='filter: Chroma(Color=#000001)'>");
						document.writeln("</IFRAME>");
						document.writeln("</DIV>");
						
						document.writeln("	<DIV ID=MINI_"+objName[inx]+"_LAYER style='cursor:move;position:absolute;left:0;top:0;visibility:hidden'>");
						document.writeln("		<img src='design/common_images/extra_capsule.gif'>");
						document.writeln("		<DIV style='cursor:move;position:absolute;left:0;top:0'>");
						document.writeln("			<TABLE width=120 height=28><TR><TD align='center'>"+title+"</TD></TR></TABLE>");
						document.writeln("		</DIV>");
						document.writeln("		<DIV style='cursor:hand;position:absolute;left:0;top:0;' onDblClick='extraNormalize("+objName[inx]+"_LAYER)'>");
						document.writeln("			<img src=design/common_images/transparency.gif width=120 height=28>");
						document.writeln("		</DIV>");						
						document.writeln("	</DIV>");
						document.writeln("</DIV>");
    				}else{
						document.writeln("<DIV ID="+objName[inx]+"_LAYER style='position:absolute;left:"+objX[inx]+";top:"+objY[inx]+";width;"+objWidth[inx]+";height:"+objHeight[inx]+";visibility:"+objVisible[inx]+";z-index:"+objZindex[inx]+";overflow:hidden'>");    					
						document.writeln("<IFRAME ID="+objName[inx]+"_FRAME src='"+extraPageSrc+"' frameborder='no' scroll=auto width="+objWidth[inx]+" height="+objHeight[inx]+" style='filter: Chroma(Color=#000001)'>");
						document.writeln("</IFRAME>");
						document.writeln("</DIV>");						
    				}

    				continue;
    			}
    		}
       		if(objImageFile[inx].length >0 ){
       			//Áßº¹µÈ ·¹ÀÌ¾î ¸íÀÌ ÀÖÀ» °æ¿ì ·¹ÀÌ¾î ÀÌ¸§À» ÀçÁ¤ÀÇ ÇØ ÁÖ´Â ºÎºÐ
       			var number ="";
       			try{
       				eval("_obj_layer_"+objName[inx]);
       				

       				number = 0;
       				while(true){
       					eval("_obj_layer_"+objName[inx]+number);
       					number++;       					
       				}
       			}catch(e){
       				objName[inx] = objName[inx]+number;
       			}
       			if(functionOnLoad[inx]&&functionOnLoad[inx].length>0){
	       			if(functionOnLoad[inx].indexOf("setObjName")>=0){
    					var _obj_name = functionOnLoad[inx].substring(12,functionOnLoad[inx].length-2);
    					objName[inx] = _obj_name;
    					functionOnLoad[inx] = "";
    				}
    			}
       			
        		_obj_layer = "<DIV ID=\"_obj_layer_"+objName[inx]+"\" style='position:absolute;left="+objX[inx]+";top="+objY[inx]+";width="+objWidth[inx]+";height="+objHeight[inx]+";visibility:"+objVisible[inx]+";z-index:"+objZindex[inx];
        		
        		//ÇÊÅÍ Ã¼Å© ÇÏÀ§ È£È¯À» À§ÇØ¼­ try~catch Ã³¸®
        		try{
	       			if(objFilter[inx]&&objFilter[inx].length>0){
    	   				_obj_layer += ";FILTER:"+objFilter[inx];
    	   				objFilter[inx] = "";
       				}
       			}catch(e){}
       			_obj_layer+="'>";
       			
       			_obj_image = "<IMG ID=\"_obj_image_"+objName[inx]+"\" src=design/"+_dir+"/design_images/"+objImageFile[inx]+" width="+objWidth[inx]+" height="+objHeight[inx];
       			if(objOverRollImage[inx].length>0) {
       				if(functionOnMouseover[inx]&&functionOnMouseover[inx].length>0){
       					_obj_image += " onMouseOver =\""+functionOnMouseover[inx]+";this.src='design/"+_dir+"/design_images/"+objOverRollImage[inx]+"'\"";
       				}else{
       					_obj_image += " onMouseOver=\"this.src='design/"+_dir+"/design_images/"+objOverRollImage[inx]+"'\"";
       				}
       				
       				if(functionOnMouseout[inx]&&functionOnMouseout[inx].length>0){
       					_obj_image += " onMouseOut =\""+functionOnMouseout[inx]+";this.src='design/"+_dir+"/design_images/"+objImageFile[inx]+"'\"";
       				}else{
       					_obj_image += " onMouseOut=\"this.src='design/"+_dir+"/design_images/"+objImageFile[inx]+"'\"";
       				}
       			}else{
       				if(functionOnMouseover[inx]&&functionOnMouseover[inx].length>0) _obj_image += " onMouseover =\""+functionOnMouseover[inx]+"\"";
       				if(functionOnMouseout[inx]&&functionOnMouseout[inx].length>0) _obj_image += " onMouseout =\""+functionOnMouseout[inx]+"\"";
       			}
	       		

    			if(functionOnBlur[inx]&&functionOnBlur[inx].length>0) _obj_image += " onBlur=\""+functionOnBlur[inx]+"\"";
                if(functionOnClick[inx]&&functionOnClick[inx].length>0) _obj_image += " onClick =\""+functionOnClick[inx]+"\"  style='cursor:hand'";
                if(functionOnChange[inx]&&functionOnChange[inx].length>0) _obj_image += " onChange =\""+functionOnChange[inx]+"\"";
    			if(functionOnFocus[inx]&&functionOnFocus[inx].length>0) _obj_image += " onFocus =\""+functionOnFocus[inx]+"\"";
    			if(functionOnMousedown[inx]&&functionOnMousedown[inx].length>0) _obj_image += " onMousedown =\""+functionOnMousedown[inx]+"\"";
    			if(functionOnMousemove[inx]&&functionOnMousemove[inx].length>0) _obj_image += " onMousemove =\""+functionOnMousemove[inx]+"\"";
    			if(functionOnMouseup[inx]&&functionOnMouseup[inx].length>0)  _obj_image += " onMouseup =\""+functionOnMouseup[inx]+"\"";
    			if(functionOnSelect[inx]&&functionOnSelect[inx].length>0)  _obj_image += " onSelect =\""+functionOnSelect[inx]+"\"";
    			if(functionOnSubmit[inx]&&functionOnSubmit[inx].length>0) _obj_image += " onSubmit =\""+functionOnSubmit[inx]+"\"";
    			if(functionOnLoad[inx]&&functionOnLoad[inx].length>0)  _obj_image += " onLoad =\""+functionOnLoad[inx]+"\"";
    			if(functionOnError[inx]&&functionOnError[inx].length>0) _obj_image += " onError =\""+functionOnError[inx]+"\"";
    			if(functionOnReset[inx]&&functionOnReset[inx].length>0) _obj_image += " onReset =\""+functionOnReset[inx]+"\"";
    			if(functionOnDbclick[inx]&&functionOnDbclick[inx].length>0) _obj_image += " onDbclick =\""+functionOnDbclick[inx]+"\"";
    			if(functionOnDragdrop[inx]&&functionOnDragdrop[inx].length>0) _obj_image += " onDragdrop =\""+functionOnDragdrop[inx]+"\"";
    			if(functionOnKeydown[inx]&&functionOnKeydown[inx].length>0) _obj_image += " onKeydown =\""+functionOnKeydown[inx]+"\"";
    			if(functionOnKeypress[inx]&&functionOnKeypress[inx].length>0) _obj_image += " onKeypress =\""+functionOnKeypress[inx]+"\"";
    			if(functionOnKeyup[inx]&&functionOnKeyup[inx].length>0) _obj_image += " onKeyup =\""+functionOnKeyup[inx]+"\"";
    			if(functionOnMove[inx]&&functionOnMove[inx].length>0) _obj_image += " onMove =\""+functionOnMove[inx]+"\"";
    			if(functionOnResize[inx]&&functionOnResize[inx].length>0) _obj_image += " onResize =\""+functionOnResize[inx]+"\"";
    			if(functionOnUnload[inx]&&functionOnUnload[inx].length>0) _obj_image += " onUnload =\""+functionOnUnload[inx]+"\"";
    			if(objAltString[inx]&&objAltString[inx].length>0) _obj_image += " alt=\""+objAltString[inx]+"\"";	

				_obj_image += " USEMAP='#_anti_image_menu_map' border='0'>";
				
    			document.write(_obj_layer);
    			document.write(_obj_image);
    			document.write("</DIV>");

    			//ÁÜ ¸ðµå¿¡ µû¶ó¼­ ¸®½ºÆ®¿¡ ³Ö¾îÁÖ´Â ºÎºÐ
    			//ÇÏÀ§ È£È¯À» À§ÇØ¼­ try~catch Ã³¸®
    			try{
        			if(objZoomMode[inx]&&objZoomMode[inx].length>0){
    	    			if(objZoomMode[inx]=="zoom"){
    		    			zoomModeZoomLayers.push(eval("_obj_layer_"+objName[inx]));
    		    			eval("_obj_layer_"+objName[inx]).style.visibility = "hidden";
    		    		}else if(objZoomMode[inx]=="normal"){
    						zoomModeNomalLayers.push(eval("_obj_layer_"+objName[inx]));
    	    			}
    	    		}
    	    		objZoomMode[inx] = "";
    	    	}catch(e){}
    		}
    	}
    }

