
$(function() {
    $("#back").click(function() {
        window.history.back();
        return false
    })
})
function JSAddFavorite(){
	if ( window.sidebar && "object" == typeof( window.sidebar ) && "function" == typeof( window.sidebar.addPanel ) ){
	//  firefox
	window.sidebar.addPanel( document.title, document.location.href, '' );
	}else if ( document.all && "object" == typeof( window.external ) ){
	//  ie
	window.external.addFavorite( document.location.href, document.title );
	}
}

/**
 * 获取URL参数
 */
Request = {
	QueryString : function(item){
		var svalue = location.search.match(new RegExp("[\?\&]" + item + "=([^\&]*)(\&?)","i"));
		return svalue ? svalue[1] : svalue;
	}
}

function GetTime()
{
      var now=new Date(); 
	  var day=new Array("星期日","星期一","星期二","星期三","星期四","星期五","星期六"); 
      $("#Timer").html("<nobr>"+now.getYear()+" 年 "+parseInt(now.getMonth()+1)+" 月 "+now.getDate()+" 日，"+day[now.getDay()]+"</nobr>");
}

function fleshVerify() {
    document.getElementById("validatecode").src += "?";
}
