// JavaScript Document
function $(id){return document.getElementById(id);}
function NowTime(sid){
var enable=0;today=new Date();
var day;var date;var time_start=new Date();
var clock_start=time_start.getTime();
if(today.getDay()==0)day="星期日";
if(today.getDay()==1)day="星期一";
if(today.getDay()==2)day="星期二";
if(today.getDay()==3)day="星期三";
if(today.getDay()==4)day="星期四";
if(today.getDay()==5)day="星期五";
if(today.getDay()==6)day="星期六";
date=(today.getYear())+"年"+(today.getMonth()+1)+"月"+today.getDate()+"日 ";
$(sid).innerHTML = date + day;
}
function voteSubmit(obj){
if(!(obj.vote[0].checked||obj.vote[1].checked||obj.vote[2].checked)){
	alert("请选择您的投票观点！");
}else{
	obj.button.disabled=true;
	window.open('','Vote','');
	obj.submit();
}
}
function showVote(){
    window.open('voteShow.asp','Vote','');
}
function get_Code() {
	var Dv_CodeFile = "bbs/Dv_GetCode.asp";
	if($("imgid"))
	  $("imgid").innerHTML = '<img src="'+Dv_CodeFile+'?t='+Math.random()+'" alt="点击刷新验证码" style="cursor:pointer;border:0;vertical-align:middle;" onclick="this.src=\''+Dv_CodeFile+'?t=\'+Math.random()" />'
}