// JavaScript Document

//公共变量、函数
function test()
{
	alert("abc");
}
//******变量声明*******

//***********************
function $(o)                      //获取对象
{ 
	if(typeof(o) == "string")
	return document.getElementById(o);
	return o;
}
