');
document.write('
');
document.write('| ');
document.write('');
document.write(' 目的地:千葉 波佐間 ');
document.write(' | ');
document.write('');
document.write('
');
millenium = new Date(2010,8,05,06,00,00)
function display() {
today = new Date()
days = Math.floor((millenium-today)/(24*60*60*1000))
time1 = Math.floor(((millenium-today)%(24*60*60*1000))/(60*60*1000))
time2 = Math.floor(((millenium-today)%(24*60*60*1000))/(60*1000))%60
time3 = Math.floor(((millenium-today)%(24*60*60*1000))/1000)%60%60
if((millenium - today) > 0){
var text = '';
if(days > 0) {
text += days+"日";
}
if (time1 > 0) {
text += time1+"時間";
}
if (time2 > 0) {
text += time2+"分";
}
text += time3+"秒";
document.getElementById("myCountDown").innerHTML = '
' + text + '';
}
else{
document.getElementById("myCountDown").innerHTML = '
'+"現在ダイビング中"+'';
}
tid = setTimeout('display();', 1000)
}
display();
document.write('
');