function AddFavorite(strTitle,strURL){
  window.external.AddFavorite(strURL,strTitle);
}

function SetHomePage(obj,strURL){
  obj.style.behavior = 'url(#default#homepage)';
  obj.setHomePage(strURL);
}

function initArray(){
  for(i=0;i<initArray.arguments.length;i++)
    this[i]=initArray.arguments[i];
}

function GetToday(){
  var isnMonths=new initArray("1月","2月","3月","4月","5月","6月","7月","8月","9月","10月","11月","12月");
  var isnDays=new initArray("星期日","星期一","星期二","星期三","星期四","星期五","星期六","星期日");
  var today=new Date();
  document.getElementById("showdt").innerText = isnDays[today.getDay()] + "," + isnMonths[today.getMonth()] + "" + today.getDate() + "日," + today.getYear() + "年";
 }
window.onload = GetToday;

function ShowContent(strId){
	var p="/Lib/ShowInfoCon.asp?id="+strId;
	window.open(p,"","status=yes,toolbar=no,scrollbars=yes,menubar=no,location=no,resizable=yes");
}

function ShowExpertAccess(strId){
	var p="/Lib/ShowExpertAccessingConFrame.asp?id="+strId;
	window.open(p,"","status=yes,toolbar=no,scrollbars=yes,menubar=no,location=no,resizable=yes");
}

function goNewWin(p){
	window.open(p,"","status=yes,toolbar=no,scrollbars=yes,menubar=no,location=no,resizable=yes");
}