﻿/********************************************************************
*                                                                   *
*               HuanBaoJu WebSite v2007                             *
*               With all best Wishes for HanJuan                    *
*                                                                   *
*               main.js, 2007/08/05, ZengHui                        *
*                                                                   *
********************************************************************/


function showDate()
{
	var today = new Date();
	var day = today.getDate(), month = today.getMonth()+1, year = today.getYear(), weekday = "星期"+"日一二三四五六".charAt(today.getDay());
	document.write(year+"年"+month+"月"+day+"日 "+weekday);
}

function swpImage(obj, id, tag)
{
  if (tag==0)
  {
  	eval(obj).src = "images/btn_vise_0" + id + "_a.gif";
  }
  else
  {
  	eval(obj).src = "images/btn_vise_0" + id + "_b.gif";
  }
}

function gotoURL(selObj, Restore)
{
  if (selObj.options[selObj.selectedIndex].value != "#" )
  	location.href =selObj.options[selObj.selectedIndex].value;
  if (Restore) selObj.selectedIndex=0;
}

function leftMouseMove(Obj, Style)
{
	Obj.className = Style;
}

function leftClick(URL)
{
	location.href = URL;
}