var focus_function = function doFocus(id)
{
	$(id).focus();
}//end doFocus


var MasterWish = {
	focus: function focus(id)
	{
		$(id).focus();
	}
}