function year() {
  nowDate = new Date();
  year = nowDate.getYear(); if(year < 2000){year += 1900;} document.write(year);
}
function month() {
  nowDate = new Date();
  document.write((nowDate.getMonth()+1)+"月");
}
function month1() {
  sDate = new Array("January","February","March","April","May","June","July","August","September","October","November","December");
  nowDate = new Date();
  document.write(sDate[nowDate.getMonth()]);
}
function month2() {
  nowDate = new Date();
  document.write((nowDate.getMonth()+1));
}
function today() {
  nowDate = new Date();
  document.write(nowDate.getDate()+"日");
}
function week() {
  sDate = new Array("(日)","(月)","(火)","(水)","(木)","(金)","(土)");
  nowDate = new Date();
  document.write(sDate[nowDate.getDay()]);
}
function window_open(m)   {
	w = window.open('', 'bbs', 'width=480,height=640,status=no,scrollbars=yes,directories=no,menubar=no,resizable=no,toolbar=no');
	w.location.href = m;
}
function window_open2(m)   {
	w = window.open('', 'job', 'width=590,height=640,status=no,scrollbars=yes,directories=no,menubar=no,resizable=no,toolbar=no');
	w.location.href = m;
}
