<HTML>
<HEAD>
   <TITLE>BLUEB</TITLE>

<script language=javascript>
prog_sec   = 0.5; // Prosess time
length_bar = 300; // Bar length
cnt_img    = 15;  // Number of image
width_img  = length_bar/cnt_img; // width of image
height_img = 8;                  // height of image

var chk_cnt   = 0;
var prog_per  = 0;
var time_unit = (prog_sec*1000)/cnt_img;

function progress() {
       if(chk_cnt < cnt_img) {
               document.images["prog_img"+chk_cnt].src = "http://www.blueb.co.kr/SRC/javascript/image/prog_bar.gif";
               chk_cnt++;
              
               prog_per = Math.round((chk_cnt/cnt_img)*100);
               if(document.all) {                 // ie4+
                       document.all.prog_num.innerHTML = prog_per + "%";
               }
               else if(document.getElementById) { // nn6+
                       document.getElementById("prog_num").innerHTML = prog_per + "%";
               }
              
               if(chk_cnt == cnt_img) {
                       window.location.replace("http://www.blueb.co.kr");
               }
               setTimeout("progress();", time_unit);
       }
}
</script>

<body onLoad="progress();" >

<script language=javascript>
   for(i=0;i<cnt_img;i++) {
           document.write("<img src=http://www.blueb.co.kr/SRC/javascript/image/prog_bg.gif width="+width_img+" height="+height_img+" name=prog_img"+i+" border=0>");
   }
</script>
<div id=prog_num class=small></div>

2007/03/24 12:22 2007/03/24 12:22

Trackback Address :: http://www.blackball.pe.kr/trackback/71

Comment on this post!

[로그인][오픈아이디란?]
오픈아이디로만 댓글을 남길 수 있습니다