// s: source url // d: flash id // w: source width // h: source height // t: wmode ("" for none, transparent, opaque ...) function mf(s,d,w,h,t){ return ""; } // write document contents function documentwrite(src){ document.write(src); } // assign code innerHTML function setcode(target, code){ target.innerHTML = code; } // 페이지 이동 스크립트 function fnPage01() { location.href="01.html" ; } function fnPage02() { location.href="02.html" ; } function fnPage03() { location.href="03.html" ; } function fnPage04() { location.href="04.html" ; } function fnPage05() { location.href="05.html" ; } function fnPage06() { location.href="06.html" ; } function fnPrev() { var Prev ; if(PartID == 1) { Prev = 1 ; }else{ Prev = PartID - 1 ; } location.href = "./0" + Prev + ".html" ; } function fnNext() { var Next ; if(PartID == 6) { Next = 1 ; }else{ Next = PartID + 1 ; } location.href = "./0" + Prev + ".html" ; }