묻고답하기

http://taeels.compuz.com/heroes3/홈페이지에 간단한 bgm플레이어를 넣어 레이어로 그 제목과 버튼들을 띄우고 있는데요.. 유독 게시판에 적용시키면 제대로 동작하지를 않는군요.

플레이어 구조는 3단구조..고; 1단은 헤더, 2단은 제목, 3단은 next와 stop버튼입니다.
쿠키를 사용해 플레이어 사용 여부를 판단하여 쿠키값이 off로 되어있다면 제목과 버튼들은 출력하지 않습니다.
그런데.. 제로보드에 홈페이지를 적용시키면 쿠키값은 off인데 제목과 버튼들이 나오고, 노래 제목도 아예 안나오더군요..;(스킨에 따라 증상이 다르긴 합니다만 모든 스킨에서 이런 증상이 발생합니다)

이거 왜이런 거죠? 참고로 작업하고있는 주소는 http://taeels.compuz.com/heroes3/
입니다.

아래는 BGM컨트롤러가 출력되는부분의 소스입니다. 파일은 제로보드 뒷쪽에 출력되는 푸터입니다.
LINK#1은 작업중인 곳이고요..


<div id="music" style="position:absolute; width:150px; height:60px; z-index:1; left: 752px; top: 36px;">
  <table width="150" border="0" cellpadding="0" cellspacing="0">
    <tr>
      <td><a href=# onclick=javascript:check_bgm();><img src="../heroes3/images/bgm_controller_01.gif" width="150" height="18" border=0></a></td>
    </tr>

<?
$bgm_set=$HTTP_COOKIE_VARS["setbgm"];
if($bgm_set!="off"){
?>

    <tr>
      <td height="26" bgcolor=black>
                <marquee scrollamount=3>
                <span id="music1212">
                <script>MName=getCookie("Mname"); document.write(MName); timer1=setInterval('checkCook()',2000);</script>
                </span>
                </marquee>
            </td>
    </tr>
    <tr>
      <td><img src="../heroes3/images/bgm_controller_03.gif" width="150" border="0" usemap="#Map" href="javascript:"></td>
    </tr>
<?
}
?>