	  // =================================================================
    // Flash ¾øÀÌ ÀÌ¹ÌÁö¸¦ RotateÇÏ´Â ÇÁ·Î±×·¥
    // ±â´É 
    // - Image Roate
    // - Imageº° Link Ã³¸®
    // -----------------------------------------------------------------
    // Author    : Lee Hyun Seung
    // Make Date : 2010.06.08
    // E-Mail    : lhs0619@gmail.com
	  // =================================================================
	  var ims_fade_in_hold = true, ims_fade_out_hold = true;
	  var ims_cur_sel = 0, ims_idx = 2, ims_is_rotate = true;
	  var ims_rtimeout;
	  var ims_ie_opacity_max = 100, ims_noie_opacity_max = 1;
	  var ims_ie_step = 20;  ims_noie_step = 0.2;    // fade-in, fade-out Áõ°¡Ä¡
	  var ims_fade_out_idx = 0; ims_fade_in_idx = 1; // fade-in, fade-out°´Ã¼¹øÈ£
	  var ims_cur_fade_out_obj = "main_image", ims_cur_fade_in_obj = "main_image_buf";

	  // =================================================================
	  // ÀÌ¹ÌÁö Á¤º¸
	  // =================================================================
	  var img_list = new Array();
	  //img_list[0] = "url('/new_ims/img/flash_004.jpg')";
	  //img_list[2] = "url('/new_ims/img/sokbo.jpg')";
	  //img_list[4] = "url('/new_ims/img/flash_005.jpg')";
	  img_list[3] = "url('/new_ims/img/flash_003.jpg')";
	  img_list[2] = "url('/new_ims/img/flash_002.jpg')";
	  //img_list[0] = "url('/new_ims/img/flash_006.jpg')";
	  img_list[0] = "url('/new_ims/img/tim_seoul.png')";
	  img_list[1] = "url('/new_ims/img/newletters.png')";
	  //img_list[0] = "url('/new_ims/img/sokbo.jpg')";
	  //img_list[1] = "url('/new_ims/img/sokbo.jpg')";

	  // =================================================================
	  // Link Á¤º¸
	  // =================================================================
	  var link_list = new Array();
	  //link_list[0] = "<table border='0'><tr><td style='cursor:hand' height='363' width='338' onClick=\"javascript:f_bbs_view('cus', 'cen', 9, 1, 20100608, 70);\">&nbsp;</td></tr></table>";
	  //link_list[2] = "<table border='0'><tr ><td style='cursor:hand' width='338' height='363' onClick=\"javascript:f_bbs_view('cus', 'cen', 9, 1, 20100625, 74);\" height='100%' width='100%'>&nbsp;</td></tr></table>";
	  //link_list[4] = "<table border='0'><tr><td style='cursor:hand'  height='363' width='338'>&nbsp;</td></tr></table>";
	  link_list[3] = "<table border='0'><tr ><td style='cursor:hand' width='338' height='363' onClick=\"javascript:f_bbs_view('com', 'tro', 11, 100, 20100406, 6);\" height='100%' width='100%'>&nbsp;</td></tr></table>";
	  link_list[2] = "<table border='0'><tr><td height='363' width='338'>&nbsp;</td></tr></table>";
	  link_list[0] = "<table border='0'><tr ><td style='cursor:hand' width='338' height='363' onClick=\"javascript:window.open('/new_ims/event/ims_mail_fconsulting.php?input_type=home&type=freecont','new','width=360,height=360,menubar=0,location=0,status=0,toolbar=0,scrollbars=1');\" height='100%' width='100%'>&nbsp;</td></tr></table>";
	  link_list[1] = "<table border='0'><tr ><td style='cursor:hand' width='338' height='363' onClick=\"javascript:window.location='/new_ims/contents/ims_contents.php?menu_gb_c=cus&menu_knd_c=cen&menu_idx=26&menu_nm=sub10';\" >&nbsp;</td></tr></table>";
	  //link_list[0] = "<table border='0'><tr ><td style='cursor:hand' width='338' height='363' onClick=\"javascript:f_bbs_view('cus', 'cen', 9, 1, 20100625, 74);\" height='100%' width='100%'>&nbsp;</td></tr></table>";
	  //link_list[1] = "<table border='0'><tr ><td style='cursor:hand' width='338' height='363' onClick=\"javascript:f_bbs_view('cus', 'cen', 9, 1, 20100625, 74);\" height='100%' width='100%'>&nbsp;</td></tr></table>";


	  // =================================================================
	  // Sleep Ã³¸®ÇÔ¼ö (ÀÏÁ¤½Ã°£ ´ë±âÃ³¸®)
	  // =================================================================
    function  f_sleep(delay_sec)
    {
    	  var  start_tm = new Date().getTime();
    	  var  curr_tm  = start_tm;
    	  
    	  while (curr_tm - start_tm < delay_sec)
    	  {
    	  	   curr_tm = new Date().getTime();
    	  }
    }
	  
	  function  f_rotate()
	  {
			  // ===========================================
			  // ÃÑ ÀÌ¹ÌÁö °Ç¼ö¸¦ È®ÀÎÇÑ´Ù.
			  // ===========================================
			  //alert(ims_idx); alert(img_list.length);
	  	  if (ims_idx >= img_list.length)
	  	  {
	  	  	  ims_idx = 0;
	  	  }

			  // ===========================================
			  // ÀÌ¹ÌÁö RotateÃ³¸®
			  // ===========================================
		    //var img_obj = document.getElementById("main_image");
		    var img_obj = document.getElementById(ims_cur_fade_in_obj);
		    img_obj.style.backgroundImage=img_list[ims_idx];
		    img_obj.style.backgroundRepeat="no-repeat";

        //alert(ims_idx);
        //alert(ims_cur_fade_out_obj);
		    //alert(img_obj.filters.alpha.opacity);
		    
		    
			  // ===========================================
			  // ÇöÁö º¸¿©Áö´Â ÀÌ¹ÌÁö ¹øÈ£
			  // ===========================================
		    ims_cur_sel = ims_idx;
		    
			  // ===========================================
			  // Next ÀÌ¹ÌÁö Ã³¸®
			  // ===========================================
		    ims_idx++;
		    
	  }


    // ===========================================================
    // ¾î¶² Æ¯Á¤°´Ã¼ÀÇ À§Ä¡Á¤º¸¸¦ °¡Á®¿Â´Ù.
    // ===========================================================
    function  f_get_object_info(obj_name, inq_type)
    {
    	  var obj_x, obj_y, obj_width, obj_height;
    	   
    	  var ims_search_word_obj = document.getElementById(obj_name);
    	  var obj_info = ims_search_word_obj.getBoundingClientRect();
    	  if (obj_info.left != undefined)
    	  {
    	  	obj_x2      = obj_info.left + (document.documentElement.scrollLeft || document.body.scrollLeft); 
          obj_y      = obj_info.top + (document.documentElement.scrollTop   || document.body.scrollTop); 
          obj_width  = obj_info.right - obj_info.left; 
          obj_height = obj_info.bottom - obj_info.top; 

    	  }
    	  else
    	  {  
    	  	ims_search_word_obj = document.getBoxObjectFor(obj_name); 
			    obj_x      = ims_search_word_obj.x; 
			    obj_y      = ims_search_word_obj.y; 
			    obj_width  = ims_search_word_obj.width; 
			    obj_height = ims_search_word_obj.height; 
    	  }	
    	  
    	  
    	  // ==========================================
    	  // Á¶È¸ À¯ÇüÀ» È®ÀÎÇÑ´Ù.
    	  // ==========================================
    	  if (inq_type == "x" || inq_type == "X")
    	  {
    	  	  return  obj_x;
    	  }
    	  else if (inq_type == "y" || inq_type == "Y")
    	  {
    	  	  return  obj_y;
    	  }
    	  else if (inq_type == "width" || inq_type == "WIDTH")
    	  {
    	  	  return  obj_width;
    	  }
    	  else if (inq_type == "height" || inq_type == "HEIGHT")
    	  {
    	  	  return  obj_height;
    	  }
    	  
    	  
    	  return  0;
    }

    // ===========================================================
    // ¾î¶² Æ¯Á¤°´Ã¼ÀÇ À§Ä¡Á¤º¸¸¦ °¡Á®¿Â´Ù.
    // ===========================================================
    function  f_set_object_info(obj_name, inq_type, val)
    {
    	  var ims_search_word_obj = document.getElementById(obj_name);
    	  var obj_info = ims_search_word_obj.getBoundingClientRect();
    	  if (obj_info.left != undefined)
    	  {
		    	  if (inq_type == "x" || inq_type == "X")
		    	  {
    	  	      obj_info.left = val;
    	  	  }
    	  	  
	    	    if (inq_type == "y" || inq_type == "Y")
	    	    {
                obj_info.top = val; //obj_info.top + (document.documentElement.scrollTop   || document.body.scrollTop); 
            }

	    	    if (inq_type == "width" || inq_type == "WIDTH")
	    	    {
                obj_info.right = val; //obj_info.right - obj_info.left; 
            }

	    	    if (inq_type == "height" || inq_type == "HEIGHT")
	    	    {
                obj_info.bottom = val; //obj_info.bottom - obj_info.top; 
            }

    	  }
    	  else
    	  {  
		    	  if (inq_type == "x" || inq_type == "X")
		    	  {
				        ims_search_word_obj.x = val; 
				    }
				    
	    	    if (inq_type == "y" || inq_type == "Y")
	    	    {
				        ims_search_word_obj.y = val; 
				    }
	
	    	    if (inq_type == "width" || inq_type == "WIDTH")
	    	    {
				        ims_search_word_obj.width = val; 
				    }
	
	    	    if (inq_type == "height" || inq_type == "HEIGHT")
	    	    {
				        ims_search_word_obj.height = val; 
				    }
    	  }	
    	  
    	  return  0;
    }
        
    // ===========================================================
    // Fade-Out Ã³¸®ÇÑ´Ù.
    // ===========================================================
    function f_fade_out_start()
    {
		    var img_obj = document.getElementById(ims_cur_fade_out_obj);
		    
		    // ============================
		    // ºê¶ó¿ìÁ® È®ÀÎ
		    // ============================
		    if (typeof(img_obj.filters) == "undefined")
		    {
		    	  // IE ¾Æ´Ô. ¤»
		    	  if (img_obj.style.opacity > 0)
		    	  {
		    	      img_obj.style.opacity -= ims_noie_step;
		    	      
		    	      if (img_obj.style.opacity == 0.2)
		    	      {
		    	      	  f_fade_in_start("just");
		    	      }
		    	      
		    	      f_fade_out();
		    	  }
		    	  else
		    	  {
		    	  	  img_obj.style.opacity = 0;
		    	  	  ims_fade_out_hold = true;
		    	  	  
		    	  	  f_fade_in();
		    	  	  f_num_over(ims_idx);

						    var img_obj1 = document.getElementById("main_image_buf");
				    	  img_obj1.innerHTML = link_list[ims_idx - 1];
		    	  }
		    	  //alert(img_obj.filters.alpha.opacity);
		    }
		    else
		    {
		    	  // IEÀÓ.¤»
		    	  //alert(img_obj.style.opacity);
		    	  if (img_obj.filters.alpha.opacity > 0)
		    	  {
		    	      img_obj.filters.alpha.opacity -= ims_ie_step;

		    	      if (img_obj.filters.alpha.opacity == 20)
		    	      {
		    	      	  //alert("1111");
		    	      	  f_fade_in_start("just");
		    	      }

		    	      f_fade_out();
		    	  }
		    	  else
		    	  {
		    	  	  img_obj.filters.alpha.opacity = 0 ;
		    	  	  ims_fade_out_hold = true;
		    	  	  
		    	  	  f_fade_in();
		    	  	  f_num_over(ims_idx);

						    var img_obj1 = document.getElementById("main_image_buf");
				    	  img_obj1.innerHTML = link_list[ims_idx-1];
		    	  }
		    }

        //img_obj.style.opacity = 0.6;
    	  
        //img_obj.filters.alpha.opacity = 60;

    }
    
    function f_fade_out()
    {
    	  // ===========================================
    	  // Timer ¼³Á¤Ã³¸®
    	  // ===========================================
    	  if (ims_is_rotate == true)
    	  {
		    	  //alert(ims_fade_in_hold);
		    	  if (ims_fade_out_hold == true)
		    	  {
		    	  	  ims_fade_out_hold = false;
				        ims_rtimeout = setTimeout(new Function("f_fade_out_start()"), 4000);
				    }
				    else
				    {
				        ims_rtimeout = setTimeout(new Function("f_fade_out_start()"), 150);
				    }
				}
    }
    
    // ===========================================================
    // Fade-In Ã³¸®ÇÑ´Ù.
    // ===========================================================
    function  f_fade_in_start(action_tp)
    {

		    var img_obj = document.getElementById(ims_cur_fade_in_obj);
        
		    // ============================
		    // ºê¶ó¿ìÁ® È®ÀÎ
		    // ============================
		    if (typeof(img_obj.filters) == "undefined")
		    {
		    	  // IE ¾Æ´Ô. ¤»
		    	  if (img_obj.style.opacity < ims_noie_opacity_max)
		    	  {
		    	  	  //img_obj.style.opacity =  img_obj.style.opacity + 0.2;
		    	  	  img_obj.style.opacity =  1;
		    	      //alert(ims_noie_step);
		    	  	  
		    	      if (action_tp != "just")
		    	      {
		    	          f_fade_in();
		    	      }
		    	  }
		    	  else
		    	  {
                img_obj.style.opacity = ims_noie_opacity_max;
		    	  	  // ======================================
		    	  	  // Fade In/ Out °´Ã¼ º¯°æÃ³¸®
		    	  	  // ======================================
		    	  	  if (ims_cur_fade_in_obj == "main_image")
		    	  	  {
				    	  	  ims_cur_fade_in_obj = "main_image_buf";
				    	  	  ims_cur_fade_out_obj = "main_image";
		    	  	  }
		    	  	  else
		    	  	  {
				    	  	  ims_cur_fade_in_obj = "main_image";
				    	  	  ims_cur_fade_out_obj = "main_image_buf";
		    	  	  }

		    	  	  // ======================================
		    	  	  // ´ÙÀ½ÀÌ¹ÌÁö¸¦ ÀÐ¾î³õ´Â´Ù. (±ô¹ÚÀÓ ¹æÁö.)
		    	  	  // ======================================
		    	  	  //var img_obj = document.getElementById(ims_cur_fade_out_obj);
		    	  	  f_rotate();

		    	  	  ims_fade_in_hold = true;
		    	  	  
		    	  	  f_fade_out();
		    	  }
		    	  //alert(img_obj.filters.alpha.opacity);
		    }
		    else
		    {
		    	  // IEÀÓ.¤»
		    	  //alert(img_obj.style.opacity);
		    	  if (img_obj.filters.alpha.opacity < ims_ie_opacity_max)
		    	  {
		    	      img_obj.filters.alpha.opacity += ims_ie_step;
		    	      //alert(ims_ie_opacity_max);
		    	      //Alert(img_obj.filters.alpha.opacity );

		    	      if (action_tp != "just")
		    	      {
		    	          f_fade_in(); 
		    	      }
		    	  }
		    	  else
		    	   {
		    	  	  img_obj.filters.alpha.opacity = ims_ie_opacity_max;
		    	  	  
		    	  	  // ======================================
		    	  	   // Fade In/ Out °´Ã¼ º¯°æÃ³¸®
		    	  	  // ======================================
		    	  	  if (ims_cur_fade_in_obj == "main_image")
		    	  	  {
				    	  	  ims_cur_fade_in_obj = "main_image_buf";
				    	  	  ims_cur_fade_out_obj = "main_image";
		    	  	  }
		    	  	  else
		    	  	  {
				    	  	  ims_cur_fade_in_obj = "main_image";
				    	  	  ims_cur_fade_out_obj = "main_image_buf";
		    	  	  }

		    	  	  // ======================================
		    	  	  // ´ÙÀ½ÀÌ¹ÌÁö¸¦ ÀÐ¾î³õ´Â´Ù. (±ô¹ÚÀÓ ¹æÁö.)
		    	  	  // ======================================
		    	  	  f_rotate();

		    	  	  ims_fade_in_hold = true;
		    	  	  
		    	  	  //alert(ims_fade_in_hold);
		    	  	  f_fade_out();
		    	  }
		    }
    }

    function  f_fade_in()
    {
    	  // ===========================================
    	  // Timer ¼³Á¤Ã³¸®
    	  // ===========================================
    	  //if (ims_fade_in_hold == true)
    	  //{
    	  //	  ims_fade_in_hold = false;
		    //    ims_rtimeout = setTimeout(new Function("f_fade_in_start('void')"), 2500);
		    //}
		    //else
		    //{
		        ims_rtimeout = setTimeout(new Function("f_fade_in_start('void')"), 150);
		    //}
    }
    
    // ===========================================================
    // Number Over
    // ===========================================================
    function  f_num_over(idx)
    {

    	  var img_obj;
    	  var tb_obj;
        for (idx_i = 0; idx_i < img_list.length; idx_i++)
        {
    	      tb_obj = "bg_" + idx_i;
    	      img_obj = document.getElementById(tb_obj);

		    	  img_obj.style.backgroundColor="#ffffff";
		    	  img_obj.style.fontWeight = "normal";
        }
        
        //alert(idx - 1);
        if ((idx - 1) > img_list.length)
        {
        	 idx = 0;
        }
        
        var idx_sel = 0;
        if (idx == 0)
        {
        	  idx_sel = idx;
	          tb_obj = "bg_" + (idx);
        }
        else
        {
        	  idx_sel = idx - 1;
	          tb_obj = "bg_" + (idx - 1);
	      }
	      
    	  var img_obj = document.getElementById(tb_obj);
    	  
    	  img_obj.style.backgroundColor="#f0f0f0";
    	  img_obj.style.fontWeight = "bold";

    }
    
    // ===========================================================
    // ÀÌ¹ÌÁöº° ¹øÈ£¿¡¼­ In µÇ¾úÀ» ¶§Ã³¸®.
    // ===========================================================
    function  f_over(str_idx, idx)
    {

    	  var tb_obj;
        
        for (idx_i = 0; idx_i < img_list.length; idx_i++)
        {
    	      tb_obj = "bg_" + idx_i;
    	      img_obj = document.getElementById(tb_obj);

		    	  img_obj.style.backgroundColor="#ffffff";
		    	  img_obj.style.fontWeight = "normal";
        }

    	  tb_obj = "bg_" + str_idx;
    	  
    	  var img_obj = document.getElementById(tb_obj);
    	  
    	  img_obj.style.backgroundColor="#f0f0f0";
    	  img_obj.style.fontWeight = "bold";


		    // ===========================================================
		    // ÀÌ¹ÌÁö °íÁ¤Ã³¸®
		    // ===========================================================
		    var img_obj  = document.getElementById("main_image");
		    var img_obj1 = document.getElementById("main_image_buf");
		    
		    // ============================
		    // ºê¶ó¿ìÁ® È®ÀÎ
		    // ============================
		    if (typeof(img_obj.filters) == "undefined")
		    {
		    	  // all browser except IE
            img_obj.style.opacity = ims_noie_opacity_max;
		    }
		    else
		    {
		    	  // ie
    	  	  img_obj.filters.alpha.opacity = ims_ie_opacity_max;
		    }

		    img_obj.style.backgroundImage=img_list[idx];
    	  //img_obj.innerHTML = link_list[idx];
    	  img_obj1.innerHTML = link_list[idx];
    	  
		    
		    ims_idx = idx;
		    
		    // ===========================================================
		    // suspend a image Roate.
		    // ===========================================================
		    ims_is_rotate = false;

		    clearTimeout(ims_rtimeout);
    
    }
    
    // ===========================================================
    // ÀÌ¹ÌÁöº° ¹øÈ£¿¡¼­ OutµÇ¾úÀ» ¶§Ã³¸®.
    // ===========================================================
    function  f_out(str_idx, idx)
    {
        // ===========================================================
        // º¯¼öÃÊ±âÈ­
        // ===========================================================
	      ims_cur_fade_out_obj = "main_image";
	      ims_cur_fade_in_obj  = "main_image_buf";
	      ims_fade_in_hold  = true;
	      ims_fade_out_hold = true;
	      ims_is_rotate     = true;

		    // ===========================================================
		    // Opacity ÃÊ±âÈ­
		    // ===========================================================
		    var img_obj1 = document.getElementById("main_image");
		    var img_obj2 = document.getElementById("main_image_buf");
		    
		    // ============================
		    // ºê¶ó¿ìÁ® È®ÀÎ
		    // ============================
		    if (typeof(img_obj1.filters) == "undefined")
		    {
		    	  // all browser except IE
            img_obj1.style.opacity = ims_noie_opacity_max;
            img_obj2.style.opacity = 0;
		    }
		    else
		    {
		    	  // ie
    	  	  img_obj1.filters.alpha.opacity = ims_ie_opacity_max;
    	  	  img_obj2.filters.alpha.opacity = 0;
		    }
	      
    	  var tb_obj = "bg_" + str_idx;
    	  
    	  ims_idx = idx + 1;

    	  var img_obj = document.getElementById(tb_obj);
    	  
    	  img_obj.style.backgroundColor = "#ffffff";
    	  img_obj.style.fontWeight = "normal";
    	  
    }

    // ===========================================================
    // ÁÂÇ¥¿¡ ÀÇÇÑ ÀÌº¥Æ° Ã³¸®Ãß°¡
    // ===========================================================
    function f_event_position()
    {
    	  // ===========================================
    	  // ÀÌ¹ÌÁö¿¡ µû¸¥ Ã³¸®¸¦ ½ÃÀÛÇÑ´Ù.
    	  // -------------------------------------------
    	  // ¡Ø ÀÌ¹ÌÁöÃß°¡ ¶Ç´Â º¯°æ½Ã ¼öÁ¤ÇØ¾ßÇÔ.
    	  // ===========================================
    	  var obj_info = document.getElementById(ims_cur_fade_out_obj);
    	  //alert(obj_info.style.backgroundImage);
    	  //alert(obj_info.style.backgroundImage.search("flash"));
    	  if (obj_info.style.backgroundImage.search("flash_005.jpg") > 0)
    	  {
    	  	  // Á¤Âø¾È³»
		    	  //alert(window.event.clientX+","+window.event.clientY);
		    	  
    	      // Ä³³ª´ÙÁ¤Âø¾È³»
    	      window.location.href="http://www.visaims.com/new_ims/contents/ims_contents.php?menu_gb_c=lan&menu_knd_c=set&menu_nm=sub1&menu_idx=1";
    	  }
    	  
    }
    
    // ===========================================================
    // Image RotateÃ³¸® Start
    // À§¿¡°ÍµéÀº Ã³¸®ÇÔ¼öµéÀÌ´Ï±ñ.. º¹ÀâÇÑ°Í ÁÁ¾ÆÇÏ¸é À§¿¡°Í ºÁµµµÊ.
    // ===========================================================
    function  f_run()
    {
    	  ims_is_rotate = true;
    	  f_rotate();
    	  f_fade_out();
    	
    }
    
    // ===========================================================
    // Image Roate Ã³¸® ½ÃÀÛ
    // -----------------------------------------------------------
    // Image RotateÃ³¸® µµÀÔºÎÀÌ¸ç, RotateÃ³¸® ½ÃÀÛÀü ÇÊ¿ä»çÇ×ÀÌ
    // ÀÖÀ¸¸é, ÀÌºÎºÐÀ» ¼öÁ¤ÇÏ¸éµÊ.(LHS)
    // ===========================================================
    function  f_rotate_start()
    {

		    var img_obj = document.getElementById("main_image");
		    img_obj.style.backgroundImage  = img_list[0];
		    img_obj.style.backgroundRepeat ="no-repeat";
		    
		    //ims_chg_image();

		    
		    var x = f_get_object_info("main_image", "x");
		    var y = f_get_object_info("main_image", "y");
		    
		    var img_buf = document.getElementById("main_image_buf");
		    img_buf.style.backgroundImage  = img_list[1];
		    img_buf.style.backgroundRepeat ="no-repeat";
		    

		    // =====================================
		    // Event Ãß°¡ 
		    // =====================================
		    if (img_buf.addEventListener)
		    {
		    	  // NoIE
		    	  img_buf.addEventListener("onclick", f_event_position);
		    }
		    else
		    {
		    	  // Just IE
		    	  img_buf.attachEvent("onclick", f_event_position);
		    }
	    
		    //img_buf.style.left = x;
		    //img_buf.style.top = y;
		    
		    //alert(x + ", " + y);

		    var b_x = f_get_object_info("main_image_buf", "x");
		    var b_y = f_get_object_info("main_image_buf", "y");
		    //alert(b_x + ", " + b_y);
		    
		    f_fade_out();
		    // =====================================
		    // ÀÌ¹ÌÁö NUMBER ¼³Á¤
		    // =====================================
		    var num_obj = document.getElementById("img_number");
		    html_num = "<table style=\"border: 0px solid;border-color: #C1C1C1;padding: 5px 10px 5px 7px;line-height: 17px;font-size: 9pt;\">";
		    html_num += "<tr onMouseOut=\"javascript:f_run();\">";
		    html_num += "<td id='bg_0' onMouseOver=\"f_over('0', 0);\" onMouseout=\"f_out('0', 0);\" style=\"border: 1px solid;border-color: #C1C1C1;padding: 5px 10px 5px 7px;line-height: 17px;font-size: 9pt;\">1</td>";
		    html_num += "<td id='bg_1' onMouseOver=\"f_over('1', 1);\" onMouseout=\"f_out('1', 1);\" style=\"border: 1px solid;border-color: #C1C1C1;padding: 5px 10px 5px 7px;line-height: 17px;font-size: 9pt;\">2</td>";
		    html_num += "<td id='bg_2' onMouseOver=\"f_over('2', 2);\" onMouseout=\"f_out('2', 2);\" style=\"border: 1px solid;border-color: #C1C1C1;padding: 5px 10px 5px 7px;line-height: 17px;font-size: 9pt;\">3</td>";
		    html_num += "<td id='bg_3' onMouseOver=\"f_over('3', 3);\" onMouseout=\"f_out('3', 3);\" style=\"border: 1px solid;border-color: #C1C1C1;padding: 5px 10px 5px 7px;line-height: 17px;font-size: 9pt;\">4</td>";
		    //html_num += "<td id='bg_3' onMouseOver=\"f_over('3', 3);\" onMouseout=\"f_out('3', 3);\" style=\"border: 1px solid;border-color: #C1C1C1;padding: 5px 10px 5px 7px;line-height: 17px;font-size: 9pt;\">4</td>";
		    //html_num += "<td id='bg_4' onMouseOver=\"f_over('4', 4);\" onMouseout=\"f_out('4', 4);\" style=\"border: 1px solid;border-color: #C1C1C1;padding: 5px 10px 5px 7px;line-height: 17px;font-size: 9pt;\">5</td>";
		    //html_num += "<td id='bg_5' onMouseOver=\"f_over('5', 5);\" onMouseout=\"f_out('5', 5);\" style=\"border: 1px solid;border-color: #C1C1C1;padding: 5px 10px 5px 7px;line-height: 17px;font-size: 9pt;\">6</td>";
		    html_num += "</tr>";
		    html_num += "</table>";
		    num_obj.innerHTML = html_num;
		    
    }
    