$.fn.assertEmpty=function (){
	if(null != $(this).val() && 'null' != $(this).val() && "" != $(this).val()){
		return false;
	}
	return true;
}


