<!--
var ND = new Date(2009,5-1,17,23,59,59)// 販売終了日・値上げ時刻等まで調整してください。
function disp() {
TD = new Date()
IFTEMP= ND.getTime()-TD.getTime();
DD = Math.floor(IFTEMP/(1000*60*60*24));
IFTEMP -= (DD*(1000*60*60*24));
HH = Math.floor(IFTEMP/(1000*60*60));
IFTEMP -= (HH*(1000*60*60));
MM = Math.floor(IFTEMP/(1000*60));
IFTEMP -= (MM*(1000*60));
SC = Math.floor(IFTEMP/1000);
IFTEMP -= (SC*(1000));
MS = Math.floor(IFTEMP/10);

for(i_01=0;i_01<2;i_01++){ MM = '' + '0' + MM; }
for(i_01=0;i_01<2;i_01++){ SC = '' + '0' + SC; }
for(i_01=0;i_01<2;i_01++){ MS = '' + '0' + MS; }
MM = MM.substring(MM.length - 2,MM.length);
SC = SC.substring(SC.length - 2,SC.length);
MS = MS.substring(MS.length - 2,MS.length);

if((ND - TD) > 0){
document.posi.out.value = "あと"+DD+"日と"+HH+"時間"+MM+"分"+SC+"秒"+MS+"です。"
document.posi2.out2.value = "上位版限定・特典テンプレート封印まであと"+DD+"日と"+HH+"時間"+MM+"分"+SC+"秒です。"
}else{
document.posi.out.value = " "
document.posi2.out2.value = " "
}
tid = setTimeout('disp()', 10)
}
disp()
// -->

 -->