myTbl     = new Array("日","月","火","水","木","金","土");
myD       = new Date();

myYear    = myD.getYear();
myMonth   = myD.getMonth() + 1;
myDate    = myD.getDate();
myDay     = myD.getDay();
myHours   = (myD.getHours() > 7 ? myD.getHours() - 7 : myD.getHours() + 24 - 7);
myMinutes = myD.getMinutes();
mySeconds = myD.getSeconds();

function keta(num){
	len = num.lemgth;
	return (len == 1 ? "0"+num : num);
}

myMonth = keta(myMonth);
myDate = keta(myDate);
myHours = keta(myHours);

myMess1   = "<strong>現在フランス・ボルドーは";
myMess2   = myYear + "/" + myMonth + "/" + myDate + " " + myHours + ":" + myMinutes + "です</strong><br>";
myMess    = myMess1 + "<br>" + myMess2;
document.write( myMess );
