묻고답하기

배경음악 여러곡을 랜덤하게 들을수 있는 소스입니다.

근데 제 홈페이징에서 이 소스를 하면 이상하게 노래는 홈피에 들어갈때마다 랜덤하게 (2곡이라

랜덤이라 하긴 그러지만) 들을수 있지만 홈페이지자체는 백지로 나오는데요. 왜 그런지

도저히 이유를 모르겠습니다. 제 홈피에 와서 소스좀 보시고 어디를 고쳐야 하는지

가르쳐 주세요. 부탁드립니다. 제 홈피는 www.cha7even.com 입니다.


<script language="JavaScript">
<!--
var how_many_ads = 6;
var now = new Date()
var sec = now.getSeconds()
var ad = sec % how_many_ads;
ad +=1;

if (ad==1) {
banner="음악주소";
}

else if (ad == 2) {
banner="음악주소";
}

else if (ad == 3) {
banner="음악주소";
}

else if (ad == 4) {
banner="음악주소";
}

else if (ad == 5) {
banner="음악주소";
}

else if (ad == 6) {
banner="음악주소";
}

document.write('<embed src="' + banner + '" loop="100" hidden="true">');
// -->
</script>