﻿// JScript 文件

function $(id)
{
	return document.getElementById(id);
	}
var temp="";
function markChose(id)
{	
	$(id).style.backgroundColor="#fffaf0";
	if(temp!=="" && temp!==id)
	$(temp).style.backgroundColor="#ffffff";
	temp=id;
	}
function btn(val1,val2){
}