function AnyInput_KeyDown (e, target)
{ 
	if ((e.which && e.which == 13) || (e.keyCode && e.keyCode == 13)) 
	{ 
		var re = /:/g;
		target = target.replace(re,"$");
		
		//comment the alert!!!!!!!!!!!
		//alert(target);
		if (typeof(Page_ClientValidate) != 'function' ||  Page_ClientValidate()){
			__doPostBack(target, '');
			return false;
		}else
			return true;
	} 
	return true; 
}

function IsEnterDown(e){
	if ((e.which && e.which == 13) || (e.keyCode && e.keyCode == 13)) 
	{
		if (typeof(Page_ClientValidate) != 'function' ||  Page_ClientValidate())
			return(true);
		else
			return(false);
	}
	return(false);
}