function cfs(size) {
var a = document.getElementById('mt');
if(size == '1') {
document.getElementById('mt').style.fontSize = '14px';
}
if(size == '0') {
document.getElementById('mt').style.fontSize = '13px';
}
}

window.onload = function () {
showtime();
}
