﻿//根据ID获得对象
function $(id) 
{
	return document.getElementById(id);
}

//根据ID获取母板页下控件对象
function $Son(id)
{
    return document.getElementById("ctl00_ContentPlaceHolder1_"+id);
}

//返回对象是否为空
function isUndefined(variable) {
	return typeof variable == 'undefined' ? true : false;
}

