// JavaScript Document
function clearText(ObjId) {
	if ($(ObjId)) {
		$(ObjId).value = '';		
	}
}

function initCustomFilter() {
	var currentTime = new Date();
	var day = currentTime.getDate();
	$('srch_Day').value = day;
}